| @@ -56,5 +56,58 @@ | ||
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | table.config_menu span.awaiting-mod{ |
| 59 | 59 | display: none; |
| 60 | +} | |
| 61 | + | |
| 62 | +#adminimize-toggle{ | |
| 63 | + border-width: 0; | |
| 64 | + color: #777; | |
| 65 | + cursor: not-allowed; | |
| 66 | +} | |
| 67 | + | |
| 68 | +.switch { | |
| 69 | + position: relative; | |
| 70 | + display: inline-block; | |
| 71 | + width: 40px; | |
| 72 | + height: 20px; | |
| 73 | + background-color: #dedede; | |
| 74 | + border-radius: 20px; | |
| 75 | +} | |
| 76 | + | |
| 77 | +.switch:after { | |
| 78 | + content: ""; | |
| 79 | + position: absolute; | |
| 80 | + width: 18px; | |
| 81 | + height: 18px; | |
| 82 | + border-radius: 50%; | |
| 83 | + background-color: #fff; | |
| 84 | + top: 1px; | |
| 85 | + left: 1px; | |
| 86 | + -webkit-transition: all .3s; | |
| 87 | + transition: all .3s; | |
| 88 | +} | |
| 89 | + | |
| 90 | +.adminimize-checkbox:checked + .switch::after { | |
| 91 | + left : 20px; | |
| 92 | +} | |
| 93 | + | |
| 94 | +.adminimize-checkbox:checked + .switch { | |
| 95 | + background-color: #0d84e3; | |
| 96 | +} | |
| 97 | + | |
| 98 | +.adminimize-checkbox { | |
| 99 | + visibility: hidden; | |
| 100 | +} | |
| 101 | + | |
| 102 | +#adminimize-export-role { | |
| 103 | + display: none; | |
| 104 | + align-items: flex-end; | |
| 105 | +} | |
| 106 | + | |
| 107 | +#adminimize-export-role select { | |
| 108 | + display: block; | |
| 109 | +} | |
| 110 | + | |
| 111 | +#adminimize-export-role option { | |
| 112 | + padding: 5px; | |
| 60 | 113 | } |