side_menu/css/admin.css

221 lines
3.8 KiB
CSS
Raw Permalink Normal View History

2020-04-09 09:55:45 +02:00
/**
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#side-menu-section input[type="color"] {
2022-10-14 19:35:49 +02:00
width: 100px;
margin: 10px 0 10px 0;
padding: 0;
border-radius: 0;
2020-04-09 09:55:45 +02:00
}
#-dropside-menu-section input[type="checkbox"] {
2022-10-14 19:35:49 +02:00
vertical-align: middle;
}
2020-08-13 21:22:10 +02:00
#side-menu-section input[type="range"] {
2022-10-14 19:35:49 +02:00
vertical-align: middle;
2020-08-13 21:22:10 +02:00
}
2020-04-09 09:55:45 +02:00
#side-menu-section select {
2022-10-14 19:35:49 +02:00
margin: 10px 0 10px 0;
2020-04-09 09:55:45 +02:00
}
.keyboard-key {
2022-10-14 19:35:49 +02:00
padding: 1px 9px;
margin: 0 2px;
background: #eee;
border: 1px solid #aaa;
color: #555;
border-radius: 3px;
}
2020-09-04 15:32:30 +02:00
.side-menu-display {
2022-10-14 19:35:49 +02:00
padding: 10px;
border: 2px solid transparent;
max-width: 100%;
cursor: pointer;
2020-09-04 15:32:30 +02:00
}
2020-09-04 15:32:30 +02:00
.side-menu-display.is-active {
2022-10-14 19:35:49 +02:00
border: 2px solid #91cb7f;
2020-09-04 15:32:30 +02:00
}
2020-09-04 16:43:27 +02:00
.info {
2022-10-14 19:35:49 +02:00
margin-top: 8px;
padding: 5px;
background: #91cb7f;
color: #fff;
border-radius: var(--border-radius);
2020-09-04 16:43:27 +02:00
}
#side-menu-section h2 small {
2022-10-14 19:35:49 +02:00
font-size: 11px;
font-weight: normal;
2020-09-04 16:43:27 +02:00
}
.side-menu-toggler {
2022-10-14 19:35:49 +02:00
cursor: pointer;
}
2021-02-03 10:14:03 +01:00
2021-02-03 10:27:08 +01:00
.side-menu-setting-list {
2022-10-14 19:35:49 +02:00
margin: 10px 4px 4px 0px;
border: 2px solid var(--color-border-dark);
2022-10-21 16:48:36 +02:00
border-radius: 15px;
2021-02-03 10:14:03 +01:00
}
2021-02-03 10:27:08 +01:00
.side-menu-setting-list-item {
2022-10-14 19:35:49 +02:00
padding: 5px 10px;
2022-10-21 16:48:36 +02:00
border-bottom: 1px solid var(--color-border-dark);
2022-10-14 19:35:49 +02:00
max-width: 300px;
margin: -1px 0 0 0;
cursor: pointer;
2022-10-21 16:48:36 +02:00
line-height: 32px;
}
.side-menu-setting-list-item:last-child {
border-bottom: 0;
2021-02-03 10:14:03 +01:00
}
.side-menu-setting-list-drop {
2022-10-14 19:35:49 +02:00
background: yellow;
border-color: yellow;
height: 34px;
}
2021-02-03 10:14:03 +01:00
.side-menu-setting.arrow {
2022-10-14 19:35:49 +02:00
color: #ccc;
padding-right: 5px;
2021-02-03 10:14:03 +01:00
}
2021-02-03 10:27:08 +01:00
.side-menu-setting-list-item input {
2022-10-21 16:48:36 +02:00
margin-top: 0;
height: 21px !important;
min-height: auto !important;
2021-02-03 10:27:08 +01:00
}
2021-02-03 15:21:08 +01:00
2022-01-11 20:02:02 +01:00
#apps-categories-custom-list select {
2022-10-14 19:35:49 +02:00
width: 100%;
2022-01-11 20:02:02 +01:00
}
2021-02-03 15:21:08 +01:00
.side-menu-setting-table {
2022-10-14 19:35:49 +02:00
display: table;
width: 100%;
2021-02-03 15:21:08 +01:00
}
.side-menu-setting-row {
2022-10-14 19:35:49 +02:00
display: table;
2022-10-21 17:59:41 +02:00
margin-bottom: 10px;
2021-02-03 15:21:08 +01:00
}
.side-menu-setting-row code {
margin-left: 2px;
margin-bottom: 1px;
padding: 3px 10px;
border-radius: 5px;
display: inline-block;
right: 2px;
border: 1px solid var(--color-border-dark);
}
2021-02-03 15:21:08 +01:00
.side-menu-setting-label {
2022-10-14 19:35:49 +02:00
display: table-cell;
width: 430px;
2022-10-14 19:35:49 +02:00
padding-right: 20px;
2021-02-03 15:21:08 +01:00
}
2022-12-02 12:16:49 +01:00
.side-menu-setting-label--top {
vertical-align: top;
}
2021-02-03 15:21:08 +01:00
.side-menu-setting-form {
2022-10-14 19:35:49 +02:00
display: table-cell;
min-width: 300px;
2021-02-03 15:21:08 +01:00
}
2021-02-27 14:21:55 +01:00
.side-menu-setting-label-short {
2022-10-14 19:35:49 +02:00
width: 300px;
2021-02-27 14:21:55 +01:00
}
.side-menu-setting-form-long {
2022-10-14 19:35:49 +02:00
width: 400px;
2021-02-27 14:21:55 +01:00
}
2022-05-30 19:49:36 +02:00
#side-menu-save-progress {
2022-10-14 19:35:49 +02:00
display: inline-block;
width: 0;
height: 15px;
background: #fff;
2022-05-30 19:49:36 +02:00
}
2022-05-31 15:48:02 +02:00
.btn-reset {
2022-10-14 19:35:49 +02:00
display: inline-block;
cursor: pointer;
position: relative;
top: -8px;
left: 5px;
2022-10-27 21:49:55 +02:00
transition-duration: 0.8s;
transition-property: transform;
transform: rotate(360deg);
}
.btn-reset--down {
top: 2px;
}
.btn-reset--progress {
transform: rotate(-359deg);
2022-05-31 15:48:02 +02:00
}
.badges {
margin-bottom: 14px;
margin-top: 4px;
}
.badge {
2022-12-04 00:13:28 +01:00
border-width: 1px;
padding: 2px 8px;
margin-right: 2px;
margin-bottom: 5px;
display: inline-block;
border-radius: 4px;
font-size: 13px;
}
.badge-1 {
background: #d4ce14;
border-color: #cad413;
color: #373a05;
}
.badge-2 {
background: #96d47f;
border-color: #7ed49b;
color: #333;
}
.badge-3 {
background: #d4540a;
border-color: #d4700c;
color: #fff;
}
.badge-4 {
background: #9d81d4;
border-color: #c681d4;
color: #fff;
}