mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-08 04:04:33 +08:00
Updated entity perms. changes for dark mode support
This commit is contained in:
@ -48,9 +48,10 @@ button {
|
|||||||
|
|
||||||
.button.outline {
|
.button.outline {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
@include lightDark(color, #666, #aaa);
|
@include lightDark(color, #666, #AAA);
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
border: 1px solid #CCC;
|
border: 1px solid;
|
||||||
|
@include lightDark(border-color, #CCC, #666);
|
||||||
&:hover, &:focus, &:active {
|
&:hover, &:focus, &:active {
|
||||||
border: 1px solid #CCC;
|
border: 1px solid #CCC;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
@ -122,7 +123,7 @@ button {
|
|||||||
.icon-button:hover {
|
.icon-button:hover {
|
||||||
background-color: rgba(0, 0, 0, 0.05);
|
background-color: rgba(0, 0, 0, 0.05);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
border-color: #DDD;
|
@include lightDark(border-color, #DDD, #444);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -802,13 +802,14 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
|
|||||||
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
.content-permissions-row {
|
.content-permissions-row {
|
||||||
border: 1.5px solid #E2E2E2;
|
border: 1.5px solid;
|
||||||
|
@include lightDark(border-color, #E2E2E2, #444);
|
||||||
border-bottom-width: 0;
|
border-bottom-width: 0;
|
||||||
label {
|
label {
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: #F2F2F2;
|
@include lightDark(background-color, #F2F2F2, #333);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.content-permissions-row:first-child {
|
.content-permissions-row:first-child {
|
||||||
|
Reference in New Issue
Block a user