mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-02-08 16:19:03 +01:00
191 lines
2.9 KiB
CSS
191 lines
2.9 KiB
CSS
#creation_wizard {
|
|
-webkit-filter: grayscale(1);
|
|
}
|
|
|
|
.api-alert {
|
|
position: absolute;
|
|
top: -5px;
|
|
left: 0;
|
|
font-size: 50px !important;
|
|
color: #fff;
|
|
background: rgb(0, 170, 170);
|
|
opacity: .4;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 100;
|
|
}
|
|
|
|
.api-alert p {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
text-align: center;
|
|
font-size: 20px;
|
|
-ms-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
button>i.refresh-class {
|
|
margin: 0px;
|
|
}
|
|
|
|
.refresh-class:hover {
|
|
cursor: grab;
|
|
}
|
|
|
|
.scroll {
|
|
max-height: 12em;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.menu-btn {
|
|
font-size: 0.9em;
|
|
padding: 2px 10px;
|
|
}
|
|
|
|
.menu {
|
|
padding-top: 10px;
|
|
z-index: 200;
|
|
margin-top: 4px;
|
|
position: absolute;
|
|
background-color: var(--card-banner-bg);
|
|
}
|
|
|
|
.menu-option {
|
|
padding: 6px 20px 6px;
|
|
color: white;
|
|
}
|
|
|
|
#overlay {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 100;
|
|
}
|
|
|
|
/* Remove default bullets */
|
|
.tree-view,
|
|
.tree-nested {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
/* Style the items */
|
|
.tree-item,
|
|
.files-tree-title {
|
|
cursor: pointer;
|
|
user-select: none;
|
|
/* Prevent text selection */
|
|
}
|
|
|
|
/* Create the caret/arrow with a unicode, and style it */
|
|
.tree-caret .fa-folder {
|
|
display: inline-block;
|
|
}
|
|
|
|
.tree-caret .fa-folder-open {
|
|
display: none;
|
|
}
|
|
|
|
/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
|
|
.tree-caret-down .fa-folder {
|
|
display: none;
|
|
}
|
|
|
|
.tree-caret-down .fa-folder-open {
|
|
display: inline-block;
|
|
}
|
|
|
|
/* Hide the nested list */
|
|
.tree-nested {
|
|
display: none;
|
|
}
|
|
|
|
#op_logo {
|
|
position: relative;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.scroll {
|
|
max-height: 12em;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.menu-btn {
|
|
font-size: 0.9em;
|
|
padding: 2px 10px;
|
|
}
|
|
|
|
.menu {
|
|
padding-top: 10px;
|
|
z-index: 200;
|
|
margin-top: 4px;
|
|
position: absolute;
|
|
background-color: #2a2c44;
|
|
}
|
|
|
|
.menu-option {
|
|
padding: 6px 20px 6px;
|
|
color: white;
|
|
}
|
|
|
|
#overlay {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 100;
|
|
}
|
|
|
|
/* Remove default bullets */
|
|
.tree-view,
|
|
.tree-nested {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
/* Style the items */
|
|
.tree-item,
|
|
.files-tree-title {
|
|
cursor: pointer;
|
|
user-select: none;
|
|
/* Prevent text selection */
|
|
}
|
|
|
|
/* Create the caret/arrow with a unicode, and style it */
|
|
.tree-caret .fa-folder {
|
|
display: inline-block;
|
|
}
|
|
|
|
.tree-caret .fa-folder-open {
|
|
display: none;
|
|
}
|
|
|
|
/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
|
|
.tree-caret-down .fa-folder {
|
|
display: none;
|
|
}
|
|
|
|
.tree-caret-down .fa-folder-open {
|
|
display: inline-block;
|
|
}
|
|
|
|
/* Hide the nested list */
|
|
.tree-nested {
|
|
display: none;
|
|
}
|
|
|
|
#op_logo {
|
|
position: relative;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
} |