framework/less/admin/PermissionsPage.less

156 lines
2.5 KiB
Plaintext
Raw Normal View History

2015-07-29 19:30:27 +08:00
.PermissionsPage-groups {
background: @control-bg;
border-radius: @border-radius;
display: block;
overflow-x: auto;
padding: 10px;
2015-07-29 19:30:27 +08:00
}
.Group {
width: 90px;
display: inline-block;
text-align: center;
color: @text-color;
font-weight: bold;
padding-left: 10px;
padding-right: 10px;
2015-07-29 19:30:27 +08:00
}
.Group-name {
display: block;
margin-top: 5px;
overflow: hidden;
text-overflow: ellipsis;
2015-07-29 19:30:27 +08:00
}
.Group--add {
color: @muted-color;
width: auto;
margin-left: 10px;
font-weight: normal;
.Group-icon {
2015-08-02 15:57:18 +08:00
font-size: 14px;
margin-top: 5px;
}
2015-07-29 19:30:27 +08:00
}
.PermissionsPage-permissions {
margin: 20px 0 30px;
overflow-x: auto;
max-height: 75vh;
2015-07-29 19:30:27 +08:00
}
.PermissionGrid {
white-space: nowrap;
2015-07-29 19:30:27 +08:00
td, th {
padding: 5px;
2015-07-29 19:30:27 +08:00
text-align: left;
}
td {
color: @muted-color;
}
thead th {
position: -webkit-sticky;
position: sticky;
top: 0;
padding-bottom: 10px;
2015-07-29 19:30:27 +08:00
text-transform: uppercase;
font-weight: bold;
font-size: 12px;
color: @muted-color;
background: @body-bg;
min-width: 140px;
z-index: 1;
&:first-child {
left: 0;
z-index: 3;
background: @body-bg;
}
&:not(:hover) .PermissionGrid-removeScope {
display: none;
}
2015-07-29 19:30:27 +08:00
}
tbody {
th {
position: -webkit-sticky;
position: sticky;
left: 0;
2015-07-29 19:30:27 +08:00
padding-right: 50px;
z-index: 2;
background: inherit;
.icon {
margin-right: 5px;
font-size: 14px;
width: 18px;
text-align: center;
color: @muted-color;
}
2015-07-29 19:30:27 +08:00
}
.Dropdown {
display: block;
.Dropdown-toggle {
width: 100%;
display: block;
text-align: left;
float: none;
}
.Dropdown-menu {
margin: 0;
}
2015-07-29 19:30:27 +08:00
}
.Button {
text-decoration: none;
.Badge {
margin: -3px 2px -3px 0;
2015-07-29 19:30:27 +08:00
}
}
td:not(:hover) .Select-caret,
td:not(:hover) .Dropdown:not(.open) .Button-caret {
display: none;
}
.open .Dropdown-toggle {
.box-shadow(none);
}
}
}
.PermissionGrid-removeScope {
margin: -1px 0;
}
.PermissionDropdown {
.Dropdown-toggle {
padding: 5px 0;
margin: -5px 0;
}
.Badge {
margin: -3px 3px -3px 0;
.box-shadow(none);
2015-07-29 19:30:27 +08:00
}
}
.PermissionGrid-section {
background: @body-bg;
2015-07-29 19:30:27 +08:00
td, th {
2020-12-08 04:14:22 +08:00
padding-top: 10px;
2015-07-29 19:30:27 +08:00
}
}
.PermissionGrid-child {
background: @body-bg;
2015-07-29 19:30:27 +08:00
td, th {
position: relative;
z-index: 0;
2015-07-29 19:30:27 +08:00
}
th {
font-weight: normal;
}
&:hover {
background: lighten(@control-bg, 3%);
}
2015-07-29 19:30:27 +08:00
}