TimeTrex Community Edition v16.2.0

This commit is contained in:
2022-12-13 07:10:06 +01:00
commit 472f000c1b
6810 changed files with 2636142 additions and 0 deletions

View File

@ -0,0 +1,56 @@
.toggle-button-div .toggle-button {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #dfdfdf));
background: -moz-linear-gradient(center top, #ffffff 5%, #dfdfdf 100%);
background-color: #ffffff;
border-radius: 4px;
border: 1px solid #aeaeae;
display: inline-block;
color: #49535c;
font-size: 12px;
font-weight: normal;
padding: 3px 5px 2px;
text-decoration: none;
cursor: pointer;
margin: 0;
}
.toggle-button-div .toggle-button:hover {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ffffff));
background: -moz-linear-gradient(center top, #dfdfdf 5%, #ffffff 100%);
background-color: #dfdfdf;
}
.toggle-button-div .toggle-button:active {
position: relative;
top: 1px;
}
.toggle-button-div .first {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.toggle-button-div .last {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.toggle-button-div .first-last {
}
.toggle-button-div .middle {
border-radius: 0;
}
.toggle-button-div .selected {
background: #999999;
color: #ffffff;
}
.toggle-button-div .selected:hover {
background: #999999;
color: #ffffff;
}