mirror of
https://github.com/Ximi1970/systray-x.git
synced 2026-01-12 02:02:04 +01:00
261 lines
4.3 KiB
CSS
261 lines
4.3 KiB
CSS
body {
|
|
font-family: Arial;
|
|
}
|
|
|
|
/* Style the tab */
|
|
.tab {
|
|
overflow: hidden;
|
|
border: 1px solid #ccc;
|
|
background-color: #f1f1f1;
|
|
}
|
|
|
|
/* Style the buttons inside the tab */
|
|
.tab button {
|
|
background-color: inherit;
|
|
float: left;
|
|
border: none;
|
|
outline: none;
|
|
cursor: pointer;
|
|
padding: 14px 16px;
|
|
transition: 0.3s;
|
|
font-size: 17px;
|
|
}
|
|
|
|
/* Change background color of buttons on hover */
|
|
.tab button:hover {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
/* Create an active/current tablink class */
|
|
.tab button.active {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
/* Style the tab content */
|
|
.tabcontent {
|
|
display: none;
|
|
padding: 6px 12px;
|
|
border: 1px solid #ccc;
|
|
border-top: none;
|
|
}
|
|
|
|
/* check box tree view */
|
|
.box {
|
|
cursor: pointer;
|
|
-webkit-user-select: none; /* Safari 3.1+ */
|
|
-moz-user-select: none; /* Firefox 2+ */
|
|
-ms-user-select: none; /* IE 10+ */
|
|
user-select: none;
|
|
}
|
|
|
|
.box::before {
|
|
content: "\2610";
|
|
color: grey;
|
|
display: inline-block;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.check-box::before {
|
|
content: "\2611";
|
|
color: dodgerblue;
|
|
}
|
|
|
|
#inputradio > input[type="radio"] {
|
|
margin: 0;
|
|
}
|
|
|
|
#inputradio > label {
|
|
display: inline;
|
|
vertical-align: top;
|
|
}
|
|
|
|
#inputcheck {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#minimizeselect,
|
|
#minimizeiconselect,
|
|
#closeselect,
|
|
#startupselect,
|
|
#positionscorrectionselect,
|
|
#defaulticonselect,
|
|
#iconselect,
|
|
#numberprops,
|
|
#counttypeselect,
|
|
#newindicatorselect,
|
|
#storageselect,
|
|
#startappselect,
|
|
#accountmenudialog1,
|
|
#accountmenudialog2,
|
|
#closeappselect {
|
|
width: 25em;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
margin: 10px 10px 10px 10px;
|
|
padding: 10px 10px 10px 10px;
|
|
}
|
|
|
|
#accountsFolders {
|
|
width: fit-content;
|
|
}
|
|
|
|
#accountmenudialog1 td:nth-child(1) {
|
|
width: 7em;
|
|
}
|
|
|
|
#accountmenudialog1 td:nth-child(2) {
|
|
width: 18em;
|
|
}
|
|
|
|
#accountmenudialog1 input {
|
|
width: 100%;
|
|
}
|
|
|
|
#accountmenudialog1 textarea {
|
|
width: 100%
|
|
}
|
|
|
|
#accountsTreeHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
height: 2.2em;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#accountsTreeHeaderRight {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
ul,
|
|
#accountsTree {
|
|
list-style-type: none;
|
|
}
|
|
|
|
/* Remove margins and padding from the parent ul */
|
|
#accountsTree {
|
|
width: fit-content;;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
margin: 0;
|
|
padding: 10px;
|
|
}
|
|
|
|
#accountContainer {
|
|
float: right;
|
|
margin-left: 40px;
|
|
margin-right: 40px;
|
|
}
|
|
|
|
#accountMenu {
|
|
background:none;
|
|
border:none;
|
|
margin:0;
|
|
padding:0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Style the caret/arrow filler */
|
|
.caretfiller::before {
|
|
user-select: none; /* Prevent text selection */
|
|
content: "\25B6";
|
|
visibility: hidden;
|
|
display: inline-block;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
/* Style the caret/arrow */
|
|
.caret {
|
|
cursor: pointer;
|
|
user-select: none; /* Prevent text selection */
|
|
}
|
|
|
|
/* Create the caret/arrow with a unicode, and style it */
|
|
.caret::before {
|
|
content: "\25B6";
|
|
color: black;
|
|
display: inline-block;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
|
|
.caret-down::before {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
/* Hide the nested list */
|
|
.nested {
|
|
display: none;
|
|
}
|
|
|
|
/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
|
|
.active {
|
|
display: block;
|
|
}
|
|
|
|
.custom-icon-container {
|
|
display: flex;
|
|
}
|
|
|
|
.custom-icon-container > div {
|
|
margin: 10px;
|
|
}
|
|
|
|
label[id="fileDefaultIconTypeLabel"],
|
|
label[id="fileIconTypeLabel"]
|
|
{
|
|
display: inline-block;
|
|
padding: 8px 16px;
|
|
vertical-align: middle;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
background-color: #f1f1f1;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
button[name="savebutton"] {
|
|
display: inline-block;
|
|
padding: 8px 16px;
|
|
vertical-align: middle;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
background-color: #f1f1f1;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
button[name="savebutton"]:hover {
|
|
color: #000;
|
|
background-color: #ccc;
|
|
}
|
|
|
|
button[name="resetbutton"] {
|
|
display: inline-block;
|
|
padding: 8px 16px;
|
|
vertical-align: middle;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
background-color: #f1f1f1;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
border: 1px solid #f44336;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
button[name="resetbutton"]:hover {
|
|
color: #000;
|
|
background-color: #ccc;
|
|
}
|