Files
PurpleMine2/src/sass/components/_admin.scss
mrliptontea aa4c59a48c Fix some styling issues in Redmine 4.
* Fix #172 Collapsed/expended icons for completed versions.
* Fix #171 "Display" label in Gantt option.
* Fix #170 radio buttons in projects options.
* Fix #169 styles in the spent time tab.
* Change lightness of shades 50 and 950.
* Change loader styles.
2020-04-05 18:53:53 +01:00

127 lines
1.6 KiB
SCSS

//
// Admin
// --------------------------------------------------
#admin-menu {
ul:nth-child(n) {
li {
list-style-type: none;
> a:not(.icon-only) {
padding-left: $sidebar-padding-horizontal + 5px + 20px;
background-repeat: no-repeat;
background-position: $sidebar-padding-horizontal center;
}
}
}
#admin-index > & {
ul {
margin: 0;
padding: 0;
}
li {
padding: ($sidebar-padding-vertical + 1px) ($sidebar-padding-horizontal + 3px);
}
a {
display: inline-block;
padding-left: 5px + 20px;
background-position: 0 center;
}
}
}
//== Groups
//
table.members,
table.memberships {
td.roles {
width: 45%;
}
}
//== Permissions
//
table.permissions {
td.role {
color: $gray-700;
font-weight: $font-weight-normal;
text-align: center;
vertical-align: bottom;
}
}
//== Workflows
//
.controller-workflows {
table.list,
fieldset.collapsible {
margin-bottom: $line-height-computed;
}
}
table.transitions {
td.enabled {
background: $state-success;
}
}
#workflow_copy_form select {
width: 200px;
}
#workflow_form table select {
width: 90%;
min-width: 60px;
}
table.fields_permissions {
td.readonly {
background: $gray-600;
}
td.required {
background: $state-danger;
}
}
//== Settings labels
//
fieldset.settings label {
display: block;
}
//== Settings -> Notifications
//
fieldset#notified_events {
.parent {
padding-left: 20px;
}
}
//== Settings -> Repositories
//
.settings.enabled_scm {
table {
width: 100%;
}
td.scm_name {
font-weight: $font-weight-bold;
}
}