2013-06-12 18:31:16 +03:00
|
|
|
/**
|
|
|
|
* BACKEND CSS FILE FOR EASY!APPOINTMENTS
|
|
|
|
*/
|
|
|
|
|
|
|
|
root {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* BACKEND GENERAL ELEMENTS
|
|
|
|
-------------------------------------------------------------------- */
|
|
|
|
#header {
|
|
|
|
height: 70px;
|
|
|
|
background-color: #35B66F;
|
|
|
|
border-bottom: 6px solid #247A4B;
|
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#header #header-logo {
|
|
|
|
display: inline-block;
|
|
|
|
height: 60px;
|
|
|
|
margin: 10px 15px 0px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header #header-logo img {
|
|
|
|
float: left;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header #header-logo span {
|
2013-10-18 17:56:12 +03:00
|
|
|
float: left;
|
|
|
|
font-size: 20px;
|
|
|
|
color: white;
|
|
|
|
margin-top: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: 1px 1px 0px rgb(32, 99, 48);
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#header #header-menu {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header #header-menu .menu-item {
|
2013-10-18 17:56:12 +03:00
|
|
|
float: left;
|
|
|
|
margin-right: 8px;
|
|
|
|
margin-top: 11px;
|
|
|
|
padding: 13px 12px;
|
|
|
|
min-width: 68px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #FFF;
|
2013-09-03 21:58:56 +03:00
|
|
|
text-decoration: none;
|
2013-10-18 17:56:12 +03:00
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 3px;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
2013-10-11 18:58:46 +03:00
|
|
|
#header #header-menu .menu-item:hover:not(.active) {
|
2013-10-18 17:56:12 +03:00
|
|
|
background-color: #2A8F57;
|
|
|
|
border-bottom: 2px solid #2E7244;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
2013-06-12 18:31:16 +03:00
|
|
|
|
2013-10-10 19:50:33 +03:00
|
|
|
#header #header-menu .active {
|
2013-10-18 17:56:12 +03:00
|
|
|
color: #C5FFD6;
|
|
|
|
background: #29A067;
|
|
|
|
border-bottom: 2px solid #2A7751;
|
2013-10-10 19:50:33 +03:00
|
|
|
}
|
|
|
|
|
2013-06-12 18:31:16 +03:00
|
|
|
#footer {
|
|
|
|
background-color: #F7F7F7;
|
|
|
|
border-top: 1px solid #DDD;
|
2013-09-13 16:21:03 +03:00
|
|
|
font-size: 11px;
|
2013-10-10 19:50:33 +03:00
|
|
|
overflow: auto;
|
2013-06-12 18:31:16 +03:00
|
|
|
}
|
2013-10-10 19:50:33 +03:00
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#footer #footer-content {
|
2013-09-13 16:21:03 +03:00
|
|
|
padding: 10px 15px;
|
2013-10-10 19:50:33 +03:00
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer #footer-user-display-name {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
padding: 10px 15px;
|
|
|
|
font-weight: bold;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
2013-06-12 18:31:16 +03:00
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#notification strong {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
2013-09-13 16:21:03 +03:00
|
|
|
#notification .alert {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#loading {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 999999;
|
|
|
|
background: rgba(255, 255, 255, 0.75);
|
|
|
|
}
|
2013-06-18 19:06:34 +03:00
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#loading img {
|
|
|
|
margin: auto;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-message {
|
2013-09-26 19:06:57 +03:00
|
|
|
margin: 10px;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
2013-06-29 00:54:12 +03:00
|
|
|
|
2013-09-13 16:21:03 +03:00
|
|
|
body .modal-header {
|
2013-10-17 18:31:43 +03:00
|
|
|
padding: 12px 15px;
|
|
|
|
background: #3DD481;
|
|
|
|
border-bottom: 4px solid #3A8154;
|
2013-09-13 16:21:03 +03:00
|
|
|
color: #FFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .modal-header h3 {
|
|
|
|
font-size: 20px;
|
2013-10-17 18:31:43 +03:00
|
|
|
text-shadow: 1px 1px 1px #134D13;
|
2013-09-13 16:21:03 +03:00
|
|
|
}
|
|
|
|
|
2013-10-10 19:50:33 +03:00
|
|
|
body .jspDrag {
|
|
|
|
background: #D3D3D3;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .jspTrack {
|
|
|
|
background: #EBEBEB;
|
|
|
|
}
|
|
|
|
|
2013-06-12 18:31:16 +03:00
|
|
|
/* BACKEND CALENDAR PAGE
|
|
|
|
-------------------------------------------------------------------- */
|
2013-09-03 21:58:56 +03:00
|
|
|
#calendar-page #calendar-toolbar {
|
2013-09-13 16:21:03 +03:00
|
|
|
border-bottom: 1px solid #D6D6D6;
|
|
|
|
background: #3A3A3A;
|
|
|
|
/*background: #FAFAFA;*/
|
|
|
|
padding: 10px;
|
|
|
|
height: 39px;
|
|
|
|
color: white;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#calendar-page #calendar-filter {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar-page #calendar-filter label {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 7px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar-page #calendar-filter select {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2013-09-27 15:49:29 +03:00
|
|
|
#calendar-page #calendar-filter select:disabled {
|
|
|
|
background: white;
|
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#calendar-page #calendar-actions {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar-page #calendar {
|
2013-09-13 16:21:03 +03:00
|
|
|
margin: 6px 12px;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#calendar-page #calendar .fc-unavailable {
|
|
|
|
background-image: url('../images/unavailable.jpg');
|
|
|
|
font-size: 24px;
|
|
|
|
border-radius: 0;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #333;
|
|
|
|
text-shadow: 0px 1px 0px #FFF;
|
2013-09-13 16:21:03 +03:00
|
|
|
opacity: 0.7;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#calendar-page #calendar .fc-break {
|
|
|
|
background-image: url('../images/break.jpg');
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar-page #calendar .fc-custom {
|
|
|
|
background-image: url('../images/custom.jpg');
|
|
|
|
}
|
2013-06-12 18:31:16 +03:00
|
|
|
|
2013-09-13 16:21:03 +03:00
|
|
|
#calendar .fc-header-title h2 {
|
2013-09-26 19:06:57 +03:00
|
|
|
font-size: 18px;
|
2013-09-13 16:21:03 +03:00
|
|
|
margin: 0px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar .fc-header .fc-button {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar .fc-agenda-allday .fc-day-content {
|
|
|
|
min-height: 19px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar .fc-agenda-divider-inner {
|
|
|
|
height: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar table thead .fc-first {
|
|
|
|
background: #DFDFDF;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar table thead .fc-first th {
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 2px 0;
|
2013-09-24 16:09:04 +03:00
|
|
|
color: #555;
|
2013-09-13 16:21:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#manage-appointment {
|
|
|
|
width: 860px;
|
|
|
|
margin-left: -430px;
|
|
|
|
}
|
|
|
|
|
2013-09-26 19:06:57 +03:00
|
|
|
#existing-customers-list {
|
|
|
|
height: 110px;
|
|
|
|
overflow-y: auto;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#existing-customers-list div {
|
|
|
|
display: inline-block;
|
|
|
|
width: 250px;
|
|
|
|
margin: 0 5px 5px 0;
|
|
|
|
padding: 3px 5px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#existing-customers-list div:hover {
|
|
|
|
background: #B8F0C1;
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filter-existing-customers {
|
|
|
|
display: inline-block;
|
|
|
|
height: 14px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2013-06-12 18:31:16 +03:00
|
|
|
/* BACKEND CUSTOMERS PAGE
|
|
|
|
-------------------------------------------------------------------- */
|
2013-10-18 17:56:12 +03:00
|
|
|
#customers-page h2 {
|
|
|
|
color: #525252;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#customers-page #filter-customers {
|
2013-09-03 21:58:56 +03:00
|
|
|
margin: 15px 0px 15px 15px;
|
2013-10-18 17:56:12 +03:00
|
|
|
width: 350px;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#customers-page .filter-records .results {
|
2013-09-03 21:58:56 +03:00
|
|
|
overflow-y: auto;
|
2013-09-25 18:43:17 +03:00
|
|
|
max-height: 650px;
|
2013-10-10 19:50:33 +03:00
|
|
|
outline: none;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#customers-page #filter-customers .results .customer-row {
|
2013-10-18 17:56:12 +03:00
|
|
|
padding: 10px 7px;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
#customers-page #filter-customers .results .customer-row:hover:not(.selected-row) {
|
|
|
|
background-color: #F3F3F3;
|
2013-09-03 21:58:56 +03:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#customers-page #filter-customers .results hr {
|
2013-09-03 21:58:56 +03:00
|
|
|
margin: 5px 0;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:31:43 +03:00
|
|
|
#customers-page .details {
|
2013-09-03 21:58:56 +03:00
|
|
|
margin: 15px 0 15px 15px;
|
2013-10-18 17:56:12 +03:00
|
|
|
max-width: 710px;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
2013-10-17 18:31:43 +03:00
|
|
|
#customers-page .details .btn-toolbar {
|
2013-09-03 21:58:56 +03:00
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:31:43 +03:00
|
|
|
#customers-page .details div.span5 {
|
2013-09-03 21:58:56 +03:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2013-07-15 17:27:19 +03:00
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#customers-page #customer-appointments {
|
|
|
|
height: 250px;
|
2013-10-18 17:56:12 +03:00
|
|
|
width: 330px;
|
|
|
|
border: 4px solid #E2E2E2;
|
2013-09-03 21:58:56 +03:00
|
|
|
margin-bottom: 20px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#customers-page #customer-appointments .appointment-row {
|
|
|
|
padding: 7px;
|
2013-10-19 13:34:32 +03:00
|
|
|
border-bottom: 4px solid #E2E2E2;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
2013-07-15 17:27:19 +03:00
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
#customers-page #customer-appointments .appointment-row:hover:not(.selected-row) {
|
|
|
|
background-color: #F3F3F3;
|
2013-09-03 21:58:56 +03:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2013-07-15 17:27:19 +03:00
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
#customers-page #appointment-details {
|
|
|
|
width: 338px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#customers-page #appointment-details div {
|
|
|
|
padding: 10px;
|
|
|
|
background: #F8F8F8;
|
|
|
|
border-bottom: 4px solid #EEE;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:31:43 +03:00
|
|
|
#customers-page .details input,
|
|
|
|
#customers-page .details textarea {
|
2013-09-03 21:58:56 +03:00
|
|
|
background-color: white;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2013-07-15 17:27:19 +03:00
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#customers-page .selected-row {
|
2013-10-18 17:56:12 +03:00
|
|
|
background-color: #CBFFD8;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
2013-06-12 18:31:16 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* BACKEND SERVICES PAGE
|
|
|
|
-------------------------------------------------------------------- */
|
2013-10-18 17:56:12 +03:00
|
|
|
#services-page h2 {
|
|
|
|
color: #525252;
|
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#services-page .tab-content {
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#services-page .nav {
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#services-page .nav li {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
#services-page .filter-records {
|
|
|
|
width: 350px;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#services-page .filter-records .results {
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 650px;
|
2013-10-10 19:50:33 +03:00
|
|
|
outline: none;
|
2013-09-25 18:43:17 +03:00
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#services-page .service-row {
|
|
|
|
padding: 10px 7px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
#services-page .service-row:hover:not(.selected-row) {
|
2013-09-03 21:58:56 +03:00
|
|
|
cursor: pointer;
|
2013-10-18 17:56:12 +03:00
|
|
|
background-color: #F3F3F3;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#services-page .selected-row {
|
2013-10-18 17:56:12 +03:00
|
|
|
background-color: #CBFFD8;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
2013-10-10 19:50:33 +03:00
|
|
|
#services-page .filter-records .results hr {
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#services-page .details .ui-spinner {
|
|
|
|
border: none;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:31:43 +03:00
|
|
|
#services-page .details .ui-state-disabled {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#services-page #service-duration {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#services-page .details .ui-spinner a {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2013-07-18 00:10:42 +03:00
|
|
|
|
|
|
|
#services-page .details input,
|
|
|
|
#services-page .details select,
|
2013-09-03 21:58:56 +03:00
|
|
|
#services-page .details textarea {
|
|
|
|
background-color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2013-06-12 18:31:16 +03:00
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#services-page #categories .category-row {
|
|
|
|
padding: 10px 7px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
#services-page #categories .category-row:hover:not(.selected-row) {
|
|
|
|
background-color: #F3F3F3;
|
2013-09-03 21:58:56 +03:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2013-07-19 18:29:59 +03:00
|
|
|
|
2013-10-17 18:31:43 +03:00
|
|
|
.details input:read-only,
|
|
|
|
.details select:disabled,
|
|
|
|
.details textarea:read-only {
|
|
|
|
opacity: 0.85;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
#services-page .details {
|
|
|
|
max-width: 370px;
|
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
/* BACKEND USERS PAGE
|
2013-06-12 18:31:16 +03:00
|
|
|
-------------------------------------------------------------------- */
|
2013-10-18 17:56:12 +03:00
|
|
|
#users-page h2 {
|
|
|
|
color: #525252;
|
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#users-page .tab-content {
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#users-page .nav {
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#users-page .nav li {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
#users-page .filter-records {
|
|
|
|
width: 380px;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#users-page .filter-records .results {
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 650px;
|
2013-10-10 19:50:33 +03:00
|
|
|
outline: none;
|
2013-09-25 18:43:17 +03:00
|
|
|
}
|
|
|
|
|
2013-09-03 21:58:56 +03:00
|
|
|
#users-page .secretary-row,
|
|
|
|
#users-page .provider-row,
|
|
|
|
#users-page .admin-row {
|
|
|
|
padding: 10px 7px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 17:56:12 +03:00
|
|
|
#users-page .secretary-row:hover:not(.selected-row),
|
|
|
|
#users-page .provider-row:hover:not(.selected-row),
|
|
|
|
#users-page .admin-row:hover:not(.selected-row) {
|
2013-09-03 21:58:56 +03:00
|
|
|
cursor: pointer;
|
2013-10-18 17:56:12 +03:00
|
|
|
background-color: #F3F3F3;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#users-page .selected-row {
|
2013-10-18 17:56:12 +03:00
|
|
|
background-color: #CBFFD8;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#users-page .details input,
|
|
|
|
#users-page .details select,
|
|
|
|
#users-page .details textarea {
|
|
|
|
background-color: white;
|
2013-10-18 17:56:12 +03:00
|
|
|
cursor: pointer;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#users-page #secretary-notifications.active,
|
|
|
|
#users-page #provider-notifications.active,
|
|
|
|
#users-page #admin-notifications.active {
|
2013-09-25 18:43:17 +03:00
|
|
|
background: #B6DCFF;
|
|
|
|
box-shadow: none;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#users-page #secretary-providers,
|
|
|
|
#users-page #provider-services {
|
2013-10-18 17:56:12 +03:00
|
|
|
border: 4px solid #ccc;
|
|
|
|
width: 340px;
|
2013-09-14 19:10:59 +03:00
|
|
|
height: 140px;
|
2013-09-03 21:58:56 +03:00
|
|
|
overflow-y: scroll;
|
2013-09-14 19:10:59 +03:00
|
|
|
padding: 7px;
|
2013-09-03 21:58:56 +03:00
|
|
|
}
|
2013-06-12 18:31:16 +03:00
|
|
|
|
2013-09-24 16:09:04 +03:00
|
|
|
#users-page #providers .switch-view {
|
|
|
|
overflow: auto;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#users-page #providers .switch-view div {
|
|
|
|
display: inline-block;
|
2013-09-25 18:43:17 +03:00
|
|
|
padding: 6px 13px;
|
2013-09-24 16:09:04 +03:00
|
|
|
border-radius: 4px;
|
|
|
|
color: #333;
|
|
|
|
float: left;
|
2013-09-25 18:43:17 +03:00
|
|
|
margin-right: 3px;
|
2013-09-24 16:09:04 +03:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#users-page #providers .switch-view div:hover:not(.current) {
|
|
|
|
background: #F5F5F5;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#users-page #providers .switch-view strong {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
margin: 8px 20px;
|
|
|
|
font-size: 17px;
|
|
|
|
}
|
|
|
|
|
2013-09-24 16:09:04 +03:00
|
|
|
#users-page #providers .switch-view .current {
|
|
|
|
color: #FFF;
|
2013-10-18 17:56:12 +03:00
|
|
|
background: #95E4A8;
|
2013-09-24 16:09:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#users-page #providers .details-view,
|
|
|
|
#users-page #providers .working-plan-view {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
#users-page .btn-toolbar {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#users-page #providers .form-message {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#users-page #providers .breaks .btn {
|
2013-09-24 16:09:04 +03:00
|
|
|
margin-right: 5px;
|
|
|
|
padding: 4px 7px;
|
|
|
|
}
|
2013-06-12 18:31:16 +03:00
|
|
|
|
2013-10-10 19:50:33 +03:00
|
|
|
|
|
|
|
#users-page .filter-records .results hr {
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
2013-10-18 17:56:12 +03:00
|
|
|
|
|
|
|
#users-page .details {
|
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#users-page .working-plan td input[type="text"] {
|
|
|
|
width: 85px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2013-06-12 18:31:16 +03:00
|
|
|
/* BACKEND SETTINGS PAGE
|
2013-09-18 19:36:29 +03:00
|
|
|
-------------------------------------------------------------------- */
|
2013-10-18 17:56:12 +03:00
|
|
|
#settings-page h2 {
|
|
|
|
color: #525252;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:36:29 +03:00
|
|
|
#settings-page .tab-content {
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings-page .nav {
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings-page .nav li {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
#business-logic .working-plan td input[type="text"] {
|
2013-09-18 19:36:29 +03:00
|
|
|
margin-bottom: 0;
|
|
|
|
cursor: pointer;
|
2013-10-18 17:56:12 +03:00
|
|
|
width: 85px;
|
2013-09-18 19:36:29 +03:00
|
|
|
}
|
|
|
|
|
2013-09-20 16:58:11 +03:00
|
|
|
#business-logic .working-plan label.checkbox {
|
2013-09-18 19:36:29 +03:00
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#business-logic .breaks .btn {
|
2013-09-18 19:36:29 +03:00
|
|
|
margin-right: 5px;
|
|
|
|
padding: 4px 7px;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#business-logic .breaks input {
|
2013-09-18 19:36:29 +03:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#business-logic .breaks .editable form {
|
2013-09-18 19:36:29 +03:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:43:17 +03:00
|
|
|
#business-logic .breaks .editable select,
|
|
|
|
#business-logic .breaks .editable input {
|
2013-09-18 19:36:29 +03:00
|
|
|
margin: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#business-logic #book-advance-timeout {
|
|
|
|
margin: 0;
|
2013-10-18 17:56:12 +03:00
|
|
|
width: 131px;
|
2013-09-18 19:36:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#business-logic .ui-spinner {
|
|
|
|
border: none;
|
2013-10-18 17:56:12 +03:00
|
|
|
width: 145px;
|
2013-09-25 18:43:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#settings-page #user-notifications.active {
|
|
|
|
background: #B6DCFF;
|
|
|
|
box-shadow: none;
|
2013-10-18 17:56:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#settings-page #general fieldset .wrapper {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings-page .working-plan-wrapper {
|
|
|
|
max-width: 600px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings-page .breaks-wrapper {
|
|
|
|
max-width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings-page .personal-info-wrapper {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings-page .miscellaneous-wrapper {
|
|
|
|
max-width: 400px;
|
2013-09-18 19:36:29 +03:00
|
|
|
}
|