| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- .admin-page {
- .admin-user-menu {
- .dropdown-menu {
- right: 0;
- left: auto;
- width: 300px;
- }
- }
- .admin-group-menu {
- .dropdown-menu {
- right: 0;
- left: auto;
- }
- }
- .admin-customize {
- @import 'hljs';
- .ss-container img {
- padding: 0.5em;
- background-color: #ddd;
- }
- .table-user-list {
- .label-admin {
- margin-left: 1em;
- }
- }
- }
- .admin-setting-header {
- border-bottom: 1px solid #dee2e6;
- }
- .admin-security {
- .passport-logo {
- height: 32px;
- padding: 3px;
- margin-top: -0.5em;
- background-color: black;
- }
- .auth-mechanism-configurations {
- min-height: 300px;
- }
- }
- .admin-notification {
- .td-abs-center {
- width: 1px; // to keep the cell small
- text-align: center;
- vertical-align: middle;
- }
- }
- .admin-importer {
- table.table-mapping {
- th,
- td {
- text-align: center;
- }
- }
- }
- // Toggle Twitter Bootstrap button class when active
- // https://jsfiddle.net/ms040m01/3/
- @mixin active-color($color, $bg-color, $border-color) {
- color: $color;
- background-color: darken($bg-color, 10%);
- border-color: $border-color;
- &:hover {
- background-color: darken($bg-color, 15%);
- }
- }
- .btn-group.btn-toggle {
- .btn {
- min-width: 60px;
- }
- .btn.active[data-active-class='default'] {
- @include active-color($btn-default-color, $btn-default-bg, $btn-default-border);
- }
- .btn.active[data-active-class='primary'] {
- @include active-color($btn-primary-color, $btn-primary-bg, $btn-primary-border);
- }
- // disabled btn-group styles
- &.btn-group-disabled {
- .btn:hover {
- cursor: not-allowed;
- background-color: unset;
- }
- }
- }
- // theme selector
- #themeOptions {
- // layout
- .theme-option-container {
- min-width: 100px;
- a {
- padding: 3px;
- margin-right: 10px;
- margin-bottom: 10px;
- svg {
- display: block;
- }
- }
- }
- &.disabled {
- cursor: not-allowed;
- opacity: 0.5;
- }
- // style
- .theme-option-container a {
- background-color: #f5f5f5;
- border: 1px solid #ccc;
- }
- .theme-option-name {
- opacity: 0.3;
- }
- // style (active)
- .theme-option-container.active {
- .theme-option-name {
- opacity: 1;
- }
- }
- }
- .settings-table {
- table-layout: fixed;
- .item-name {
- width: 150px;
- }
- td.unused {
- opacity: 0.5;
- }
- &.use-only-env-vars .from-env-vars {
- background-color: rgba($info, 0.1);
- }
- }
- }
|