2003-03-17 23:28:24 +00:00
|
|
|
/*
|
|
|
|
|
2009-10-27 18:47:12 +00:00
|
|
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
2009-02-17 20:36:52 +00:00
|
|
|
Copyright (C) 2003 Leonhard Walchshaeusl
|
2019-02-23 17:42:21 +00:00
|
|
|
Copyright (C) 2005 - 2019 Roland Gruber
|
2003-03-17 23:28:24 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
2003-05-02 12:52:42 +00:00
|
|
|
|
2003-03-17 23:28:24 +00:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more detaexils.
|
2003-05-02 12:52:42 +00:00
|
|
|
|
2003-03-17 23:28:24 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2003-06-04 18:47:40 +00:00
|
|
|
/* CSS layout for LAM */
|
2003-03-17 23:28:24 +00:00
|
|
|
|
|
|
|
|
2003-05-02 12:52:42 +00:00
|
|
|
/**
|
2003-03-17 23:28:24 +00:00
|
|
|
* global page layout
|
2003-05-02 12:52:42 +00:00
|
|
|
*
|
2003-03-17 23:28:24 +00:00
|
|
|
*/
|
2003-06-04 18:47:40 +00:00
|
|
|
|
|
|
|
h1,h2,h3,h4,p,ul,ol,li,div,td,th,address,blockquote,b,i {
|
2006-03-03 17:30:35 +00:00
|
|
|
font-family:Arial,Tahoma,Verdana,sans-serif;
|
2003-04-09 17:10:47 +00:00
|
|
|
}
|
|
|
|
|
2011-12-08 19:18:22 +00:00
|
|
|
h1,h2,h3 { color:black; }
|
2007-11-11 13:49:01 +00:00
|
|
|
|
2003-04-09 17:10:47 +00:00
|
|
|
body {
|
|
|
|
background-color:#F5F5F5;
|
2015-08-02 19:16:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body.selfservice {
|
2015-08-02 17:34:10 +00:00
|
|
|
padding: 10px;
|
2015-08-04 18:41:12 +00:00
|
|
|
background: #fffde2;
|
2003-04-09 17:10:47 +00:00
|
|
|
}
|
|
|
|
|
2016-08-27 13:56:23 +00:00
|
|
|
body.admin {
|
2019-11-07 16:21:59 +00:00
|
|
|
padding: 0px 10px 10px 10px;
|
2016-08-27 13:56:23 +00:00
|
|
|
}
|
|
|
|
|
2019-08-08 19:10:32 +00:00
|
|
|
body.lam-selfservice {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2011-04-09 10:03:41 +00:00
|
|
|
.defaultBackground {
|
2013-02-22 19:30:43 +00:00
|
|
|
background: #F5F5F5 !important;
|
2011-04-09 10:03:41 +00:00
|
|
|
}
|
|
|
|
|
2003-06-04 18:47:40 +00:00
|
|
|
/* links */
|
2003-04-09 17:10:47 +00:00
|
|
|
a {
|
2012-11-02 17:45:35 +00:00
|
|
|
color: #222222;
|
2010-10-13 17:45:13 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:link {
|
2012-11-02 17:45:35 +00:00
|
|
|
color: #222222;
|
2010-10-13 17:45:13 +00:00
|
|
|
text-decoration: none;
|
2003-04-09 17:10:47 +00:00
|
|
|
}
|
|
|
|
|
2003-05-07 22:37:01 +00:00
|
|
|
a:visited {
|
2012-11-02 17:45:35 +00:00
|
|
|
color: #222222;
|
2010-10-13 17:45:13 +00:00
|
|
|
text-decoration: none;
|
2003-05-07 22:37:01 +00:00
|
|
|
}
|
|
|
|
|
2003-04-09 17:10:47 +00:00
|
|
|
a:hover {
|
2018-06-27 16:19:35 +00:00
|
|
|
color: red;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
2003-03-17 23:28:24 +00:00
|
|
|
}
|
|
|
|
|
2004-01-29 16:01:01 +00:00
|
|
|
a:active {
|
2010-10-13 17:45:13 +00:00
|
|
|
color: red;
|
|
|
|
text-decoration: none;
|
2004-01-29 16:01:01 +00:00
|
|
|
}
|
|
|
|
|
2005-02-27 12:40:06 +00:00
|
|
|
a img {
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
2012-11-03 17:34:18 +00:00
|
|
|
a.classicBold {
|
|
|
|
color: blue;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2003-05-06 23:51:04 +00:00
|
|
|
fieldset {
|
2016-08-27 08:40:05 +00:00
|
|
|
border:1px solid black;
|
2015-08-02 19:16:46 +00:00
|
|
|
padding:10px;
|
2003-05-06 23:51:04 +00:00
|
|
|
}
|
|
|
|
|
2012-01-14 13:20:34 +00:00
|
|
|
div.filled {
|
|
|
|
background-color:#fff3c8;
|
|
|
|
border:1px solid #af8800;
|
|
|
|
padding:10px;
|
|
|
|
}
|
|
|
|
|
2003-05-29 17:45:15 +00:00
|
|
|
legend {
|
2011-12-08 19:18:22 +00:00
|
|
|
color:black;
|
2003-09-16 16:34:15 +00:00
|
|
|
}
|
|
|
|
|
2014-11-10 20:51:04 +00:00
|
|
|
input.listPageInput {
|
|
|
|
width: 3em;
|
|
|
|
text-align: center;
|
2013-01-19 13:18:52 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 16:59:07 +00:00
|
|
|
input.max-width-10 {
|
|
|
|
max-width: 10rem;
|
|
|
|
}
|
|
|
|
|
2010-08-31 18:49:55 +00:00
|
|
|
select {
|
|
|
|
background:#F5F5F5 none repeat-x scroll 50% 50%;
|
|
|
|
border:1px solid #AAAAAA;
|
|
|
|
color:#222222;
|
2015-07-26 09:37:40 +00:00
|
|
|
margin: 3px;
|
2011-12-08 19:44:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
2015-07-26 09:37:40 +00:00
|
|
|
margin: 3px;
|
2010-08-31 18:49:55 +00:00
|
|
|
}
|
|
|
|
|
2017-12-06 18:21:59 +00:00
|
|
|
textarea {
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
|
2013-03-24 11:23:32 +00:00
|
|
|
.margin2 {
|
2015-07-26 09:37:40 +00:00
|
|
|
margin: 2px;
|
2013-03-24 11:23:32 +00:00
|
|
|
}
|
|
|
|
|
2017-10-31 14:22:34 +00:00
|
|
|
.margin3 {
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
|
2015-08-02 17:34:10 +00:00
|
|
|
.margin5 {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2017-10-31 14:22:34 +00:00
|
|
|
.margin10 {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.margin20 {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
2017-11-01 12:45:20 +00:00
|
|
|
.margin-left5 {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
2017-11-01 18:41:29 +00:00
|
|
|
.margin-right5 {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:53 +00:00
|
|
|
.noMarginTop {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
2019-09-02 16:05:05 +00:00
|
|
|
.noMarginSides {
|
|
|
|
margin-right: 0px;
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
|
2018-01-02 20:42:02 +00:00
|
|
|
.padding0 {
|
|
|
|
padding: 0em !important;
|
|
|
|
}
|
|
|
|
|
2018-05-19 09:14:31 +00:00
|
|
|
.padding-right05 {
|
|
|
|
padding-right: 0.5rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.padding-left-right05 {
|
|
|
|
padding-left: 0.5rem !important;
|
|
|
|
padding-right: 0.5rem !important;
|
|
|
|
}
|
|
|
|
|
2016-07-16 12:35:11 +00:00
|
|
|
.padding05 {
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.padding1 {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
2016-08-27 17:52:52 +00:00
|
|
|
.spacing5 {
|
|
|
|
border-spacing: 5px;
|
|
|
|
border-collapse: separate;
|
|
|
|
}
|
|
|
|
|
2017-11-03 17:53:10 +00:00
|
|
|
.float-left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2016-07-16 12:35:11 +00:00
|
|
|
.hoverHighlight {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hoverHighlight:hover {
|
|
|
|
border: 1px solid grey;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0 0 10px #a0a0a4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.black {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2010-10-09 15:12:46 +00:00
|
|
|
.align-middle {
|
2010-07-29 20:34:08 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2015-08-09 13:18:04 +00:00
|
|
|
.align-top {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2017-11-12 10:45:36 +00:00
|
|
|
.align-unset-img img {
|
|
|
|
vertical-align: unset;
|
|
|
|
}
|
|
|
|
|
2010-07-29 20:34:08 +00:00
|
|
|
table.lamHeader {
|
|
|
|
background-image: url(lam-images/headerLine.png);
|
2019-11-07 20:45:12 +00:00
|
|
|
padding: 0px;
|
2010-08-31 17:34:16 +00:00
|
|
|
height: 35px;
|
2019-11-07 20:45:12 +00:00
|
|
|
margin-bottom: 0.5rem;
|
2016-08-27 13:56:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table.lamTop {
|
|
|
|
background-image: url(lam-images/headerLine.png);
|
|
|
|
padding: 0px;
|
|
|
|
height: 35px;
|
|
|
|
width: 100%;
|
|
|
|
border-width: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.lamTop td {
|
|
|
|
padding: 1px;
|
|
|
|
vertical-align: "bottom";
|
2010-07-29 20:34:08 +00:00
|
|
|
}
|
|
|
|
|
2013-01-19 13:18:52 +00:00
|
|
|
/* table preferences */
|
|
|
|
table.accountlist {
|
|
|
|
border-width:1px;
|
|
|
|
border-style:solid;
|
2013-02-03 11:46:47 +00:00
|
|
|
}
|
|
|
|
|
2019-10-24 19:07:57 +00:00
|
|
|
table.accountlist input[type='text'] {
|
|
|
|
width: 99%;
|
2019-10-24 19:15:37 +00:00
|
|
|
min-width: 7rem;
|
2019-10-24 19:07:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.lam-listtools {
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 125px;
|
|
|
|
}
|
|
|
|
|
2019-11-07 16:21:59 +00:00
|
|
|
.lam-list-buttons {
|
|
|
|
padding-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
2019-11-14 20:56:15 +00:00
|
|
|
.lam-listouselection-height {
|
|
|
|
height: 27px;
|
|
|
|
}
|
|
|
|
|
2013-02-03 11:46:47 +00:00
|
|
|
table.collapse {
|
|
|
|
border-collapse:collapse;
|
2013-01-19 13:18:52 +00:00
|
|
|
}
|
|
|
|
|
2016-11-01 14:17:26 +00:00
|
|
|
.tablepadding05 td,th {
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-23 19:21:50 +00:00
|
|
|
.rightToLeftText {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2015-08-06 19:20:54 +00:00
|
|
|
.text-left {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2017-11-04 09:49:28 +00:00
|
|
|
.text-center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2019-09-02 16:05:05 +00:00
|
|
|
.div-center {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2015-08-06 19:20:54 +00:00
|
|
|
.bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2010-09-04 12:41:22 +00:00
|
|
|
/** buttons */
|
2010-08-28 09:34:00 +00:00
|
|
|
.saveButton {
|
|
|
|
background-image: url(../graphics/save.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2010-08-28 09:34:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.cancelButton {
|
2018-11-20 18:18:23 +00:00
|
|
|
background-image: url(../graphics/cancel.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2010-08-28 09:34:00 +00:00
|
|
|
}
|
|
|
|
|
2010-09-02 18:43:05 +00:00
|
|
|
.logoutButton {
|
|
|
|
background-image: url(../graphics/exit.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2009-07-08 18:02:28 +00:00
|
|
|
}
|
|
|
|
|
2010-09-04 12:41:22 +00:00
|
|
|
.undoButton {
|
|
|
|
background-image: url(../graphics/undo.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2010-09-04 12:41:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.passwordButton {
|
|
|
|
background-image: url(../graphics/key.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2010-09-04 12:41:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.loadProfileButton {
|
|
|
|
background-image: url(../graphics/loadProfile.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2010-09-04 12:41:22 +00:00
|
|
|
}
|
|
|
|
|
2010-10-10 17:31:45 +00:00
|
|
|
.deleteButton {
|
|
|
|
background-image: url(../graphics/del.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2010-10-10 17:31:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.createButton {
|
|
|
|
background-image: url(../graphics/add.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2010-10-10 17:31:45 +00:00
|
|
|
}
|
|
|
|
|
2011-05-03 16:15:38 +00:00
|
|
|
.editButton {
|
|
|
|
background-image: url(../graphics/edit.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2011-05-03 16:15:38 +00:00
|
|
|
}
|
|
|
|
|
2010-10-10 17:43:02 +00:00
|
|
|
.settingsButton {
|
|
|
|
background-image: url(../graphics/tools.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2010-10-10 17:43:02 +00:00
|
|
|
}
|
|
|
|
|
2010-10-31 13:52:37 +00:00
|
|
|
.upButton {
|
|
|
|
background-image: url(../graphics/up.gif) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2010-10-31 13:52:37 +00:00
|
|
|
}
|
|
|
|
|
2013-07-21 10:04:38 +00:00
|
|
|
.downButton {
|
|
|
|
background-image: url(../graphics/down.gif) !important;
|
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
2011-05-03 16:15:38 +00:00
|
|
|
.backButton {
|
|
|
|
background-image: url(../graphics/back.gif) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2011-05-03 16:15:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pdfButton {
|
|
|
|
background-image: url(../graphics/pdf.png) !important;
|
2013-02-22 19:30:43 +00:00
|
|
|
background-position: 0px 0px !important;
|
2011-05-03 16:15:38 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 19:05:10 +00:00
|
|
|
.dryRunButton {
|
2016-11-01 10:48:16 +00:00
|
|
|
background-image: url(../graphics/info_small.png) !important;
|
2013-11-17 19:05:10 +00:00
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
2014-09-13 14:43:44 +00:00
|
|
|
.trashButton {
|
|
|
|
background-image: url(../graphics/trash.png) !important;
|
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
2015-03-01 14:45:45 +00:00
|
|
|
.refreshButton {
|
|
|
|
background-image: url(../graphics/refresh.png) !important;
|
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
2015-06-12 18:28:25 +00:00
|
|
|
.testButton {
|
|
|
|
background-image: url(../graphics/tests.png) !important;
|
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
2016-11-01 10:48:16 +00:00
|
|
|
.infoButton {
|
|
|
|
background-image: url(../graphics/info_small.png) !important;
|
|
|
|
background-size: 16px 16px;
|
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
2018-05-28 16:43:15 +00:00
|
|
|
.unixButton {
|
|
|
|
background-image: url(../graphics/tux.png) !important;
|
|
|
|
background-size: 16px 16px;
|
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.groupButton {
|
|
|
|
background-image: url(../graphics/group.png) !important;
|
|
|
|
background-size: 16px 16px;
|
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
2018-06-15 17:03:51 +00:00
|
|
|
.sambaButton {
|
|
|
|
background-image: url(../graphics/samba.png) !important;
|
|
|
|
background-size: 16px 16px;
|
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
2018-10-11 14:52:38 +00:00
|
|
|
.okButton {
|
|
|
|
background-image: url(../graphics/pass.png) !important;
|
|
|
|
background-size: 16px 16px;
|
|
|
|
background-position: 0px 0px !important;
|
|
|
|
}
|
|
|
|
|
2010-09-02 18:43:05 +00:00
|
|
|
.smallPadding span {
|
|
|
|
padding: 0.1em 0.4em !important;
|
2009-11-13 20:12:34 +00:00
|
|
|
}
|
|
|
|
|
2010-10-12 17:49:18 +00:00
|
|
|
.smallPaddingContent {
|
|
|
|
padding: 0.5em;
|
2018-01-03 17:40:51 +00:00
|
|
|
padding-bottom: 1rem;
|
2010-10-12 17:49:18 +00:00
|
|
|
}
|
|
|
|
|
2010-10-17 13:37:22 +00:00
|
|
|
/** titles */
|
|
|
|
.titleText {
|
|
|
|
color: black;
|
2017-11-05 09:49:33 +00:00
|
|
|
text-align: left;
|
2010-10-17 13:37:22 +00:00
|
|
|
}
|
|
|
|
|
2010-09-04 12:41:22 +00:00
|
|
|
/** subtitles */
|
2010-10-17 13:37:22 +00:00
|
|
|
.subTitle {
|
2010-09-04 12:41:22 +00:00
|
|
|
margin: 20px 0px 15px 0px;
|
2011-12-08 19:18:22 +00:00
|
|
|
border-bottom: 1px dotted black;
|
2010-09-04 12:41:22 +00:00
|
|
|
}
|
|
|
|
|
2010-10-17 13:37:22 +00:00
|
|
|
.subTitleText {
|
2010-09-04 12:41:22 +00:00
|
|
|
margin: 0px 0px 0px 10px;
|
2010-10-17 13:37:22 +00:00
|
|
|
color: black;
|
2017-11-05 09:49:33 +00:00
|
|
|
text-align: left;
|
2010-09-04 12:41:22 +00:00
|
|
|
}
|
|
|
|
|
2010-10-31 13:52:37 +00:00
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2011-04-09 10:03:41 +00:00
|
|
|
.nowrap {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2012-01-31 18:31:54 +00:00
|
|
|
hr.dotted {
|
|
|
|
border-bottom: 1px dotted black;
|
|
|
|
border-top: none;
|
|
|
|
border-right: none;
|
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
|
2011-12-22 08:43:17 +00:00
|
|
|
div.ui-progressbar-value {
|
|
|
|
background-image: url(images/pbar-ani.gif);
|
|
|
|
}
|
|
|
|
|
2017-12-06 17:30:44 +00:00
|
|
|
div.jobList {
|
|
|
|
overflow: scroll;
|
|
|
|
max-height: 50rem;
|
|
|
|
}
|
|
|
|
|
2018-01-12 16:57:32 +00:00
|
|
|
div.smallScroll {
|
|
|
|
overflow: scroll;
|
|
|
|
max-height: 10rem;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
2012-11-30 19:21:47 +00:00
|
|
|
.fullwidth {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-01-12 11:27:15 +00:00
|
|
|
.halfwidth {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
2014-03-29 09:55:25 +00:00
|
|
|
td.loginLogo {
|
|
|
|
background-image: url(../graphics/lam.png);
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
margin: 5px;
|
2017-10-31 14:22:34 +00:00
|
|
|
height: 303px;
|
|
|
|
width: 63px;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.loginRightBox {
|
|
|
|
margin: 5px;
|
|
|
|
width: 63px;
|
2014-03-29 09:55:25 +00:00
|
|
|
}
|
|
|
|
|
2015-08-02 19:16:46 +00:00
|
|
|
.roundedShadowBox {
|
|
|
|
border: 2px solid #a0a0a4;
|
|
|
|
border-radius: 5px;
|
2015-07-29 19:14:10 +00:00
|
|
|
box-shadow: 2px 2px 5px #a0a0a4;
|
|
|
|
display: inline-block;
|
|
|
|
background-color: white;
|
2017-11-04 09:49:28 +00:00
|
|
|
padding: 30px;
|
2016-08-27 13:31:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.limitWidth {
|
2015-08-02 19:16:46 +00:00
|
|
|
max-width: 580px;
|
2015-07-29 19:14:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.centeredTable {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2014-03-29 11:04:14 +00:00
|
|
|
a.lamLogo {
|
|
|
|
background-image: url(../graphics/logo24.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: left;
|
|
|
|
line-height: 24px;
|
|
|
|
display: block;
|
|
|
|
text-indent:32px;
|
|
|
|
vertical-align: middle;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2014-03-29 09:55:25 +00:00
|
|
|
|
2014-05-25 14:37:05 +00:00
|
|
|
input.markFail {
|
|
|
|
background-color: #ffc4ba;
|
|
|
|
}
|
|
|
|
input.markOk {
|
|
|
|
background-color: #abebaa;
|
|
|
|
}
|
|
|
|
|
2013-02-10 16:00:41 +00:00
|
|
|
.sortableList { list-style-type: none; margin: 0; padding: 0; }
|
|
|
|
.sortableList li { margin: 0 3px 3px 3px; padding: 0.4em; padding-left: 1.5em; }
|
|
|
|
.sortableList li span { position: absolute; margin-left: -1.3em; }
|
|
|
|
|
2018-10-28 12:55:30 +00:00
|
|
|
.strike-through {
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
|
2013-02-10 16:00:41 +00:00
|
|
|
|
2003-05-02 12:52:42 +00:00
|
|
|
/**
|
|
|
|
* table style for delete.php
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* table preferences */
|
|
|
|
table.account {
|
2003-09-11 16:55:57 +00:00
|
|
|
border-width:0px;
|
2003-05-02 12:52:42 +00:00
|
|
|
border-style:solid;
|
|
|
|
border-color:#000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* color of entry rows */
|
|
|
|
tr.account {
|
|
|
|
background-color:#FFFFEE;
|
|
|
|
}
|
|
|
|
|
2010-12-11 15:58:25 +00:00
|
|
|
/* --- workaround for vertical tabs --- */
|
|
|
|
|
2018-11-01 17:17:11 +00:00
|
|
|
#lamVerticalTabs {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
2010-12-11 15:58:25 +00:00
|
|
|
#lamVerticalTabs .ui-tabs-nav li {
|
2019-02-23 17:42:21 +00:00
|
|
|
margin: 0 -1px .2em 1 !important;
|
2010-12-11 15:58:25 +00:00
|
|
|
clear: left;
|
|
|
|
width: 100%;
|
|
|
|
border-right-width: 0 !important;
|
2010-12-14 19:45:58 +00:00
|
|
|
border-bottom: 1px solid #AAAAAA !important;
|
2010-12-11 15:58:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#lamVerticalTabs .ui-tabs-nav li.ui-tabs-selected {
|
|
|
|
padding-bottom: 0;
|
|
|
|
padding-right: .1em;
|
2018-11-01 17:17:11 +00:00
|
|
|
border: 1px solid #c5c5c5
|
2010-12-11 15:58:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#lamVerticalTabs .ui-tabs-nav {
|
|
|
|
float: left;
|
2019-02-23 17:42:21 +00:00
|
|
|
padding: .2em 0em .2em .2em !IMPORTANT;
|
|
|
|
border-right: 0px;
|
2010-12-11 15:58:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#lamVerticalTabs .ui-tabs-panel {
|
2019-11-07 20:14:52 +00:00
|
|
|
padding: 0em 1em 1em 1em;
|
2010-12-11 15:58:25 +00:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2015-07-26 09:37:40 +00:00
|
|
|
#lamVerticalTabs .ui-widget-header {
|
2010-12-14 19:45:58 +00:00
|
|
|
background: #CCCCCC url(images/ui-bg_highlight-soft_75_cccccc_1x150-vertical.png) repeat-y;
|
2010-12-11 15:58:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#lamVerticalTabs .ui-tabs-nav li button {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
display:block;
|
2011-12-27 21:04:42 +00:00
|
|
|
color: #555555;
|
2010-12-11 15:58:25 +00:00
|
|
|
}
|
|
|
|
|
2019-08-15 12:13:10 +00:00
|
|
|
button.lam-account-type {
|
|
|
|
background-color:transparent;
|
|
|
|
border:0px solid;
|
|
|
|
}
|
|
|
|
|
2019-08-15 15:02:50 +00:00
|
|
|
button.lam-account-type img {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
min-width: 32px;
|
|
|
|
min-height: 32px;
|
|
|
|
}
|
|
|
|
|
2010-12-11 15:58:25 +00:00
|
|
|
/* --- end of workaround for vertical tabs --- */
|
|
|
|
|
|
|
|
/* title bar */
|
|
|
|
.titleBar {
|
2019-08-15 13:11:25 +00:00
|
|
|
background-image: linear-gradient(#fdfdfd, #cccccc);
|
2010-12-11 15:58:25 +00:00
|
|
|
border-top: 1px solid #AAAAAA;
|
|
|
|
border-left: 1px solid #AAAAAA;
|
|
|
|
border-right: 1px solid #AAAAAA;
|
|
|
|
}
|
|
|
|
|
|
|
|
.titleBarTitle {
|
|
|
|
font: bold 1em Arial,Tahoma,Verdana,sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.titleBarSubtitle {
|
|
|
|
padding: 0px 5px 0px 10px;
|
|
|
|
}
|
2003-05-02 12:52:42 +00:00
|
|
|
|
2003-05-03 15:45:10 +00:00
|
|
|
/**
|
|
|
|
* Color and font definitions for templates/status.php
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Background olor for the different Status Messages */
|
2003-08-16 17:29:18 +00:00
|
|
|
div.statusInfo {
|
2007-07-05 19:36:49 +00:00
|
|
|
background-color:#a8c3ff;
|
|
|
|
border: 1px solid blue;
|
2003-05-03 15:45:10 +00:00
|
|
|
}
|
|
|
|
|
2003-08-16 17:29:18 +00:00
|
|
|
div.statusWarn {
|
2007-07-05 19:36:49 +00:00
|
|
|
background-color:#fff2a3;
|
2013-04-28 18:45:35 +00:00
|
|
|
border: 1px solid #f59d00;
|
2003-05-03 15:45:10 +00:00
|
|
|
}
|
|
|
|
|
2003-08-16 17:29:18 +00:00
|
|
|
div.statusError {
|
2007-07-05 19:36:49 +00:00
|
|
|
background-color:#ffc4ba;
|
|
|
|
border: 1px solid red;
|
2003-05-03 15:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* H2 (MessageHeadline) font size, family, color, and some more settings for the different Status Messages */
|
2013-04-28 18:45:35 +00:00
|
|
|
div.statusTitle {
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 3px 3px 3px 15px;
|
2003-05-03 15:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* P (MessageText) font size, family, color, and some more settings for the different Status Messages */
|
2013-04-28 18:45:35 +00:00
|
|
|
p.statusText {
|
|
|
|
margin: 3px 3px 3px 25px;
|
2003-05-03 15:45:10 +00:00
|
|
|
}
|
|
|
|
|
2009-10-07 18:08:32 +00:00
|
|
|
input.smallImageButton {
|
2017-11-12 10:45:36 +00:00
|
|
|
background-position: center center;
|
2009-10-07 18:08:32 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
height:24px;
|
2010-09-04 12:41:22 +00:00
|
|
|
border: 0px;
|
|
|
|
background-color: transparent;
|
|
|
|
cursor:pointer;
|
2009-10-07 18:08:32 +00:00
|
|
|
}
|
|
|
|
|
2019-09-22 11:19:26 +00:00
|
|
|
.lam-input-error {
|
|
|
|
border: 1px solid red;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
2017-11-12 10:45:36 +00:00
|
|
|
.size16 {
|
|
|
|
height: 16px !important;
|
|
|
|
width: 16px !important;
|
|
|
|
max-width: 16px;
|
|
|
|
}
|
|
|
|
|
2013-10-20 18:07:56 +00:00
|
|
|
/* help tooltip */
|
|
|
|
th.help {
|
|
|
|
text-align: left;
|
|
|
|
padding-bottom: 10px;
|
2015-07-26 07:55:08 +00:00
|
|
|
font-size: 85%;
|
2013-10-20 18:07:56 +00:00
|
|
|
}
|
|
|
|
td.help {
|
2015-07-26 07:55:08 +00:00
|
|
|
font-size: 85%;
|
2013-10-20 18:07:56 +00:00
|
|
|
}
|
|
|
|
|
2019-08-15 12:36:55 +00:00
|
|
|
img.help-icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
min-width: 16px;
|
|
|
|
min-height: 16px;
|
|
|
|
}
|
|
|
|
|
2014-10-25 13:13:44 +00:00
|
|
|
img.photo {
|
|
|
|
max-width: 200px;
|
|
|
|
max-height: 400px;
|
|
|
|
}
|
|
|
|
|
2018-10-28 15:10:29 +00:00
|
|
|
img.thumbnail {
|
|
|
|
max-width: 64px;
|
|
|
|
max-height: 64px;
|
|
|
|
}
|
|
|
|
|
2014-10-26 16:24:44 +00:00
|
|
|
div.confModList {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
2018-01-12 16:57:32 +00:00
|
|
|
.font-big {
|
|
|
|
font-size: 130%;
|
2005-01-30 15:39:01 +00:00
|
|
|
}
|
|
|
|
|
2013-01-19 13:18:52 +00:00
|
|
|
/** colors for account types */
|
|
|
|
|
|
|
|
.alias-border { border-color:#af8800; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.alias-bright { background:#fff3c8 !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.alias-dark { background-color:#ffe27f !important; }
|
|
|
|
|
|
|
|
.asteriskExt-border { border-color:#af8800; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.asteriskExt-bright { background:#fff3c8 !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.asteriskExt-dark { background-color:#ffe27f !important; }
|
|
|
|
|
|
|
|
.automountType-border { border-color:#7167bf; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.automountType-bright { background:#d6e3ff !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.automountType-dark { background-color:#a8c3ff !important; }
|
|
|
|
|
|
|
|
.dhcp-border { border-color:#527510; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.dhcp-bright { background:#d4f19b !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.dhcp-dark { background-color:#9fc653 !important; }
|
|
|
|
|
|
|
|
.gon-border { border-color:#7167bf; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.gon-bright { background:#d6e3ff !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.gon-dark { background-color:#a8c3ff !important; }
|
|
|
|
|
|
|
|
.group-border { border-color:#7167bf; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.group-bright { background:#d6e3ff !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.group-dark { background-color:#a8c3ff !important; }
|
|
|
|
|
|
|
|
.host-border { border-color:#911a1a; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.host-bright { background:#ffe2dd !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.host-dark { background-color:#ffc4ba !important; }
|
|
|
|
|
|
|
|
.mailAlias-border { border-color:#af8800; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.mailAlias-bright { background:#fff3c8 !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.mailAlias-dark { background-color:#ffe27f !important; }
|
|
|
|
|
|
|
|
.netgroup-border { border-color:#7167bf; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.netgroup-bright { background:#d6e3ff !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.netgroup-dark { background-color:#a8c3ff !important; }
|
|
|
|
|
|
|
|
.nisObjectType-border { border-color:#7167bf; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.nisObjectType-bright { background:#d6e3ff !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.nisObjectType-dark { background-color:#a8c3ff !important; }
|
|
|
|
|
|
|
|
.ppolicyType-border { border-color:#af8800; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.ppolicyType-bright { background:#fff3c8 !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.ppolicyType-dark { background-color:#ffe27f !important; }
|
|
|
|
|
|
|
|
.smbDomain-border { border-color:#1d993e; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.smbDomain-bright { background:#c9ddd2 !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.smbDomain-dark { background-color:#a8ddbf !important; }
|
|
|
|
|
|
|
|
.sudo-border { border-color:#9b8523; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.sudo-bright { background:#fffde2 !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.sudo-dark { background-color:#fff2a3 !important; }
|
|
|
|
|
|
|
|
.user-border { border-color:#9b8523; }
|
|
|
|
.user-bright { background: #fffde2 !important; }
|
|
|
|
.user-dark { background-color:#fff2a3 !important; }
|
|
|
|
|
2017-05-16 19:15:15 +00:00
|
|
|
.kopanoAddressListType-border { border-color:#7167bf; }
|
|
|
|
.kopanoAddressListType-bright { background:#d6e3ff !important; }
|
|
|
|
.kopanoAddressListType-dark { background-color:#a8c3ff !important; }
|
|
|
|
|
2013-01-19 13:18:52 +00:00
|
|
|
.zarafaAddressListType-border { border-color:#7167bf; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.zarafaAddressListType-bright { background:#d6e3ff !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.zarafaAddressListType-dark { background-color:#a8c3ff !important; }
|
|
|
|
|
2017-05-16 19:15:15 +00:00
|
|
|
.kopanoDynamicGroupType-border { border-color:#7167bf; }
|
|
|
|
.kopanoDynamicGroupType-bright { background:#d6e3ff !important; }
|
|
|
|
.kopanoDynamicGroupType-dark { background-color:#a8c3ff !important; }
|
|
|
|
|
2013-01-19 13:18:52 +00:00
|
|
|
.zarafaDynamicGroupType-border { border-color:#7167bf; }
|
2013-02-22 19:30:43 +00:00
|
|
|
.zarafaDynamicGroupType-bright { background:#d6e3ff !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
.zarafaDynamicGroupType-dark { background-color:#a8c3ff !important; }
|
|
|
|
|
2013-08-25 12:19:00 +00:00
|
|
|
.pykotaPrinterType-border { border-color:#911a1a; }
|
|
|
|
.pykotaPrinterType-bright { background:#ffe2dd !important; }
|
|
|
|
.pykotaPrinterType-dark { background-color:#ffc4ba !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
|
2013-09-16 19:24:24 +00:00
|
|
|
.pykotaBillingCodeType-border { border-color:#527510; }
|
|
|
|
.pykotaBillingCodeType-bright { background:#d4f19b !important; }
|
|
|
|
.pykotaBillingCodeType-dark { background-color:#9fc653 !important; }
|
|
|
|
|
2013-10-27 16:02:36 +00:00
|
|
|
.bind-border { border-color:#32768b; }
|
|
|
|
.bind-bright { background:#b6eeff !important; }
|
|
|
|
.bind-dark { background-color:#80e0e1 !important; }
|
2013-01-19 13:18:52 +00:00
|
|
|
|
2013-11-03 17:17:47 +00:00
|
|
|
.kolabSharedFolderType-border { border-color:#32768b; }
|
|
|
|
.kolabSharedFolderType-bright { background:#b6eeff !important; }
|
|
|
|
.kolabSharedFolderType-dark { background-color:#80e0e1 !important; }
|
|
|
|
|
2014-02-09 14:47:35 +00:00
|
|
|
.oracleContextType-border { border-color:#32768b; }
|
|
|
|
.oracleContextType-bright { background:#b6eeff !important; }
|
|
|
|
.oracleContextType-dark { background-color:#80e0e1 !important; }
|
|
|
|
|
2016-01-06 15:05:52 +00:00
|
|
|
.nsviewType-border { border-color:#af8800; }
|
|
|
|
.nsviewType-bright { background:#fff3c8 !important; }
|
|
|
|
.nsviewType-dark { background-color:#ffe27f !important; }
|
|
|
|
|
2017-12-31 09:52:33 +00:00
|
|
|
.customType-border { border-color:#b87500; }
|
|
|
|
.customType-bright { background:#ffe3b1 !important; }
|
|
|
|
.customType-dark { background-color:#e1b974 !important; }
|
2017-12-30 16:07:49 +00:00
|
|
|
|