2013-01-25 02:23:05 +01:00
|
|
|
/**
|
|
|
|
* @provides conpherence-header-pane-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.conpherence-header-pane {
|
|
|
|
border-bottom: 1px solid #ccc;
|
2013-01-26 00:48:04 +01:00
|
|
|
height: 80px;
|
2013-01-25 02:23:05 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-03-25 15:38:27 +01:00
|
|
|
.device .conpherence-header-pane {
|
|
|
|
position: fixed;
|
|
|
|
top: 44px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .conpherence-header-pane {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-01-25 02:23:05 +01:00
|
|
|
.conpherence-header-pane .edit {
|
|
|
|
float: right;
|
|
|
|
margin: 16px 16px 0px 0px;
|
2013-01-26 00:48:04 +01:00
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
background-image: url('/rsrc/image/actions/edit.png');
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-header-pane .header-image {
|
|
|
|
position: absolute;
|
2013-01-26 00:48:04 +01:00
|
|
|
top: 15px;
|
|
|
|
left: 15px;
|
2013-01-25 02:23:05 +01:00
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
2013-02-06 23:03:52 +01:00
|
|
|
.conpherence-header-pane .custom-header-image {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
height: 80px;
|
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
|
2013-01-25 02:23:05 +01:00
|
|
|
.conpherence-header-pane .title {
|
|
|
|
position: relative;
|
|
|
|
font-size: 16px;
|
2013-01-26 00:48:04 +01:00
|
|
|
font-weight: bold;
|
|
|
|
left: 77px;
|
|
|
|
top: 21px;
|
2013-01-25 02:23:05 +01:00
|
|
|
max-width: 80%;
|
2013-01-25 03:33:51 +01:00
|
|
|
overflow-x: auto;
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
|
|
|
|
2013-02-06 23:03:52 +01:00
|
|
|
.conpherence-header-pane .custom-title {
|
|
|
|
position: relative;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
left: 132px;
|
|
|
|
top: 21px;
|
|
|
|
max-width: 80%;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
2013-01-25 02:23:05 +01:00
|
|
|
.conpherence-header-pane .subtitle {
|
|
|
|
position: relative;
|
2013-01-26 00:48:04 +01:00
|
|
|
left: 77px;
|
|
|
|
top: 21px;
|
2013-01-25 02:23:05 +01:00
|
|
|
color: #bfbfbf;
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
|
|
|
|
2013-02-06 23:03:52 +01:00
|
|
|
.conpherence-header-pane .custom-subtitle {
|
|
|
|
position: relative;
|
|
|
|
left: 132px;
|
|
|
|
top: 21px;
|
|
|
|
color: #bfbfbf;
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-header-pane .upload-photo {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-header-upload-photo .upload-photo {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 32px;
|
|
|
|
font-size: 16px;
|
|
|
|
background: #99ff99;
|
|
|
|
border-color: #669966;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-header-upload-photo .edit,
|
|
|
|
.conpherence-header-upload-photo .header-image,
|
|
|
|
.conpherence-header-upload-photo .custom-header-image,
|
|
|
|
.conpherence-header-upload-photo .title,
|
|
|
|
.conpherence-header-upload-photo .custom-title,
|
|
|
|
.conpherence-header-upload-photo .subtitle,
|
|
|
|
.conpherence-header-upload-photo .custom-subtitle {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-01-25 02:23:05 +01:00
|
|
|
|