2020-03-22 10:17:54 +01:00
|
|
|
@import url("pad/layout.css");
|
|
|
|
@import url("pad/fonts.css");
|
|
|
|
@import url("pad/toolbar.css");
|
|
|
|
@import url("pad/popup.css");
|
|
|
|
@import url("pad/popup_connectivity.css");
|
|
|
|
@import url("pad/popup_import_export.css");
|
|
|
|
@import url("pad/popup_users.css");
|
|
|
|
@import url("pad/icons.css");
|
|
|
|
@import url("pad/chat.css");
|
|
|
|
@import url("pad/gritter.css");
|
|
|
|
@import url("pad/loadingbox.css");
|
|
|
|
|
2020-04-02 14:36:49 +02:00
|
|
|
html {
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
line-height: 16px;
|
|
|
|
color: #3e3e3e;
|
|
|
|
}
|
2020-04-05 18:56:21 +02:00
|
|
|
html, *, *:after, *:before {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2020-04-02 14:36:49 +02:00
|
|
|
*, p {
|
2012-04-09 17:52:43 +02:00
|
|
|
margin: 0;
|
2020-04-02 14:36:49 +02:00
|
|
|
padding: 0;
|
2012-04-09 17:52:43 +02:00
|
|
|
}
|
|
|
|
.clear {
|
|
|
|
clear: both
|
|
|
|
}
|
2020-04-02 14:36:49 +02:00
|
|
|
a {
|
|
|
|
color: inherit;
|
2012-05-17 12:03:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
a img {
|
|
|
|
border: 0
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2020-03-26 14:24:18 +01:00
|
|
|
|
|
|
|
.thin-scrollbar::-webkit-scrollbar-track {
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
border: 1px solid #f0f0f0;
|
|
|
|
}
|
|
|
|
.thin-scrollbar::-webkit-scrollbar {
|
|
|
|
width: 7px;
|
|
|
|
}
|
|
|
|
.thin-scrollbar::-webkit-scrollbar-thumb {
|
|
|
|
background-color: #C5C5C5;
|
|
|
|
}
|
|
|
|
|
2015-03-31 15:47:00 +02:00
|
|
|
.buttontext::-moz-focus-inner {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.buttontext:focus{
|
2015-04-05 14:39:20 +02:00
|
|
|
/* Not sure why important is required here but it is */
|
|
|
|
border: 1px solid #666 !important;
|
2015-03-31 15:47:00 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.rtl {
|
|
|
|
direction: RTL
|
|
|
|
}
|
2020-03-22 10:17:54 +01:00
|
|
|
|
2012-02-29 13:17:35 +01:00
|
|
|
/* fix for misaligned checkboxes */
|
|
|
|
input[type=checkbox] {
|
2012-04-09 17:52:43 +02:00
|
|
|
vertical-align: -1px
|
2012-02-29 13:17:35 +01:00
|
|
|
}
|
2020-04-02 14:36:49 +02:00
|
|
|
input {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2012-01-28 17:38:52 +01:00
|
|
|
.right {
|
2012-04-09 17:52:43 +02:00
|
|
|
float: right
|
2020-03-22 10:17:54 +01:00
|
|
|
}
|