kivitendo/css/less/admin.less @ 2daecdf1
1352ae88 | Hans Peter Schlaepfer | // ----------------------------------------------------------------------------
|
||
//
|
||||
// ADMIN-Section
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
// DESCRIPTION:
|
||||
//
|
||||
//
|
||||
//
|
||||
// CONTENTS:
|
||||
// -
|
||||
// -
|
||||
// -
|
||||
// -
|
||||
// ----------------------------------------------------------------------------
|
||||
// login and admin
|
||||
// PENDENT: entfernen?!?!?!
|
||||
a.no-underlined-links,
|
||||
a.no-underlined-links:visited,
|
||||
a.no-underlined-links:hover {
|
||||
text-decoration: none !important;
|
||||
background-color:transparent !important;
|
||||
border:none;
|
||||
}
|
||||
a.no-underlined-links:hover {
|
||||
background: none;
|
||||
}
|
||||
// Admin section: the menu itself doesn't occupy space. So make room
|
||||
// at the top of the div covering the whole admin area.
|
||||
body {
|
||||
& + #menuv3 {
|
||||
top: 0 important;
|
||||
}
|
||||
div.admin {
|
||||
1b62523f | Hans P. Schlaepfer | padding: 60px 0 0 0 ;
|
||
.bg-content ;
|
||||
1352ae88 | Hans Peter Schlaepfer | |||
h1 {
|
||||
background-color: #fe5f14 !important;
|
||||
1b62523f | Hans P. Schlaepfer | color: #ffffff;
|
||
top: 30px ;
|
||||
position: fixed;
|
||||
width: 100% ;
|
||||
padding: 0.6em 0.5em 0.5em 0.6em;
|
||||
z-index: 1000;
|
||||
1352ae88 | Hans Peter Schlaepfer | |||
& + .wrapper {
|
||||
padding-top: 1.2em;
|
||||
}
|
||||
}
|
||||
1b62523f | Hans P. Schlaepfer | // Login-Form with big logo
|
||
.logo {
|
||||
width: auto;
|
||||
clear: both;
|
||||
margin: 3.0em auto 1.0em auto;
|
||||
padding: 2.0em 0 0 0;
|
||||
}
|
||||
.separate-form{
|
||||
background-color: #ddd ;
|
||||
border: 1px @gray-standard solid;
|
||||
border-radius: @controlpanel-radius ;
|
||||
display: block ;
|
||||
width: 24.0em;
|
||||
margin: 0 auto ;
|
||||
padding: 0.7em 0.6em 1.0em 0.6em ;
|
||||
}
|
||||
1352ae88 | Hans Peter Schlaepfer | .tabwidget {
|
||
1b62523f | Hans P. Schlaepfer | padding: 2.4em 0 0 0 !important;
|
||
1352ae88 | Hans Peter Schlaepfer | .ui-tabs-nav{
|
||
1b62523f | Hans P. Schlaepfer | top: 66px;
|
||
1352ae88 | Hans Peter Schlaepfer | }
|
||
.ui-tabs-panel {
|
||||
1b62523f | Hans P. Schlaepfer | padding: 2.0em 1.0em 1.0em 1.0em ;
|
||
overflow: hidden;
|
||||
height: auto;
|
||||
min-height: 300px ;
|
||||
1352ae88 | Hans Peter Schlaepfer | }
|
||
}
|
||||
1b62523f | Hans P. Schlaepfer | |||
1352ae88 | Hans Peter Schlaepfer | & > form{
|
||
display: block ;
|
||||
margin-top: 1px ;
|
||||
padding-top: 1.2em ;
|
||||
}
|
||||
.message{
|
||||
&_error,
|
||||
&_hint,
|
||||
&_info,
|
||||
&_warning,
|
||||
&_ok{
|
||||
//margin-top: 70px ;
|
||||
}
|
||||
}
|
||||
1b62523f | Hans P. Schlaepfer | |||
} // /div.admin
|
||||
} // /body
|
||||
1352ae88 | Hans Peter Schlaepfer | |||