forked from extern/egroupware
179 lines
3.9 KiB
CSS
179 lines
3.9 KiB
CSS
/**
|
|
* EGroupware - CSS Styles used by old eTemplate widgets
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
|
* @author Stefan Reinhard <stefan.reinhard@pixelegg.de>
|
|
* @package etemplate
|
|
* @version $Id$
|
|
*/
|
|
.redItalic,
|
|
.message {
|
|
color: red;
|
|
font-style: italic;
|
|
}
|
|
.gray {
|
|
color: gray;
|
|
}
|
|
.leftPad5 {
|
|
padding-left: 5px;
|
|
}
|
|
.inputFullWidth input {
|
|
width: 100%;
|
|
}
|
|
.selectboxFullWidth select {
|
|
width: 100%;
|
|
}
|
|
.inputRequired input,
|
|
.inputRequired select,
|
|
.inputRequired textarea {
|
|
background-color: #FFFFD0;
|
|
border: 1px solid gray;
|
|
}
|
|
.clickWidgetToEdit {
|
|
cursor: pointer;
|
|
display: inline;
|
|
}
|
|
.clickWidgetToEdit:hover {
|
|
background-color: pink;
|
|
}
|
|
.activ_sortcolumn {
|
|
font-weight: bold;
|
|
}
|
|
.inactiv_sortcolumn {
|
|
font-weight: normal;
|
|
}
|
|
.selectcols {
|
|
position: relative;
|
|
}
|
|
.colselection {
|
|
background-color: white;
|
|
display: none;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 16px;
|
|
z-index: 1;
|
|
}
|
|
table.TabHeader {
|
|
background-color: #d9d9d9;
|
|
}
|
|
.etemplate_tab {
|
|
white-space: nowrap;
|
|
width: auto;
|
|
display: inline-block;
|
|
margin: 1em 5px 1em 0;
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
background-color: #f0f0f0;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
-webkit-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
|
|
-moz-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
|
|
box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
}
|
|
.etemplate_tab:hover {
|
|
-webkit-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.9);
|
|
-moz-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.9);
|
|
box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.9);
|
|
background-color: inherit !important;
|
|
}
|
|
.etemplate_tab:focus {
|
|
-webkit-box-shadow: inset 1px 2px 1px rgba(0, 0, 0, 0.5);
|
|
-moz-box-shadow: inset 1px 2px 1px rgba(0, 0, 0, 0.5);
|
|
box-shadow: inset 1px 2px 1px rgba(0, 0, 0, 0.5);
|
|
}
|
|
.etemplate_tab_active {
|
|
white-space: nowrap;
|
|
width: auto;
|
|
display: inline-block;
|
|
margin: 1em 5px 1em 0;
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
-webkit-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
|
|
-moz-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
|
|
box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
background-color: #808080;
|
|
border-width: 0 0 3px 0;
|
|
border-style: solid;
|
|
border-spacing: 0px;
|
|
border-color: #408dd2;
|
|
color: #f2f2f2;
|
|
}
|
|
.etemplate_tab_active .th {
|
|
background-color: #808080;
|
|
border-width: 0 0 3px 0;
|
|
border-style: solid;
|
|
border-spacing: 0px;
|
|
border-color: #408dd2;
|
|
color: #f2f2f2;
|
|
}
|
|
.etemplate_tab row_on,
|
|
td.etemplate_tab_active:focus {
|
|
background-color: #808080;
|
|
border-width: 0 0 3px 0;
|
|
border-style: solid;
|
|
border-spacing: 0px;
|
|
border-color: #408dd2;
|
|
color: #f2f2f2;
|
|
}
|
|
.tab_body {
|
|
border: 2px solid none;
|
|
border-color: #f0f0f0;
|
|
}
|
|
.nextmatch_header {
|
|
border: 1px solid black;
|
|
}
|
|
.nextmatch_header select {
|
|
width: 140px;
|
|
}
|
|
.nm_num_rows select {
|
|
width: 40px;
|
|
}
|
|
.vfsMode {
|
|
font-family: monospace;
|
|
font-weight: bold;
|
|
}
|
|
.vfsMimeIcon img {
|
|
max-height: 16px;
|
|
max-width: 16px;
|
|
}
|
|
.vfsFilename {
|
|
white-space: nowrap;
|
|
}
|
|
.vfsIsLink img {
|
|
background-image: url("images/link.png");
|
|
background-position: right bottom;
|
|
background-repeat: no-repeat;
|
|
padding-right: 8px;
|
|
}
|
|
.vfsIsLink img:after {
|
|
content: url("../../../filemanager/templates/default/images/link.png");
|
|
}
|
|
.vfsIsBrokenLink img {
|
|
background-image: url("images/link_broken.png");
|
|
background-position: right bottom;
|
|
background-repeat: no-repeat;
|
|
padding-right: 8px;
|
|
}
|
|
.cf_header_height_limit {
|
|
max-height: 6.75em;
|
|
overflow: auto;
|
|
padding-right: 15px;
|
|
}
|
|
.eTdate {
|
|
white-space: nowrap;
|
|
}
|