2016-09-01 18:52:26 +03:00
|
|
|
body {
|
2014-02-19 16:34:32 +01:00
|
|
|
font-family: 'Roboto', sans-serif;
|
2015-04-20 17:34:23 +03:00
|
|
|
font-size: 15px;
|
2014-02-19 16:34:32 +01:00
|
|
|
}
|
2015-10-15 09:19:41 +03:00
|
|
|
html {
|
2015-11-09 13:46:53 +02:00
|
|
|
/* overflow-y: scroll; */
|
2015-10-15 09:19:41 +03:00
|
|
|
}
|
2014-02-19 16:34:32 +01:00
|
|
|
.bold { font-weight: 700; }
|
2015-05-08 11:21:29 +03:00
|
|
|
/*a:hover { text-decoration: none; color: #0a3857;}*/
|
2014-02-19 16:34:32 +01:00
|
|
|
.breadcrumb {
|
|
|
|
|
padding: 8px 0!important;
|
|
|
|
|
}
|
|
|
|
|
legend {
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: inherit;
|
|
|
|
|
color: #333;
|
|
|
|
|
border-bottom: 1px solid #dfe0e1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.greenlink a { color:#36c157; }
|
|
|
|
|
.greenlink a:hover { color:#2e9e49; }
|
|
|
|
|
.redlink a { color:#da4830; }
|
2014-03-18 17:08:30 +01:00
|
|
|
.redlink { color:#da4830; }
|
2014-02-19 16:34:32 +01:00
|
|
|
.redlink a:hover { color:#c13b25; }
|
2014-03-18 17:08:30 +01:00
|
|
|
.redlink:hover { color:#c13b25; }
|
2014-02-19 16:34:32 +01:00
|
|
|
|
|
|
|
|
.buttons { margin: 25px 0; }
|
2017-11-03 10:19:03 +02:00
|
|
|
.buttons .btn { margin: 0 4px; }
|
2014-02-19 16:34:32 +01:00
|
|
|
|
|
|
|
|
/*forms*/
|
|
|
|
|
.form-group {
|
|
|
|
|
margin-bottom: 17px;
|
|
|
|
|
}
|
|
|
|
|
.form-control {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40px;
|
2014-02-21 14:02:59 +01:00
|
|
|
padding: 9px 12px;
|
2015-05-05 12:48:23 +03:00
|
|
|
font-size: 16px;
|
2014-02-19 16:34:32 +01:00
|
|
|
line-height: 1.42857143;
|
2015-04-20 17:34:23 +03:00
|
|
|
color: #000 !important;
|
|
|
|
|
background: #f9f9f9 !important;
|
2014-02-19 16:34:32 +01:00
|
|
|
background-image: none;
|
|
|
|
|
border: 1px solid #dfe0e1;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
|
|
|
|
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
|
|
|
|
}
|
|
|
|
|
.form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
}
|
2015-09-21 00:05:02 +03:00
|
|
|
.form-control-static {
|
|
|
|
|
padding-top: 11px;
|
|
|
|
|
}
|
2014-02-21 14:02:59 +01:00
|
|
|
textarea.form-control {
|
2015-09-04 10:20:30 +03:00
|
|
|
/*height: auto !important;*/
|
|
|
|
|
min-height: 40px;
|
2014-02-21 14:02:59 +01:00
|
|
|
}
|
2014-02-19 21:11:08 +01:00
|
|
|
/*tables*/
|
2015-09-04 10:20:30 +03:00
|
|
|
table.data-table td {
|
|
|
|
|
height: 38px !important;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-25 19:10:16 +01:00
|
|
|
table.dataTable { border-radius: 3px; border-collapse: collapse;
|
2014-02-19 21:11:08 +01:00
|
|
|
/*border-spacing: 0;*/}
|
2016-09-01 18:52:26 +03:00
|
|
|
|
2015-06-07 11:43:34 +03:00
|
|
|
/*
|
2015-06-04 23:53:58 +03:00
|
|
|
table.dataTable tr:hover {
|
2015-06-07 11:05:30 +03:00
|
|
|
background-color: #F2F5FE !important;
|
2015-06-04 23:53:58 +03:00
|
|
|
}
|
2015-06-07 11:43:34 +03:00
|
|
|
*/
|
2014-02-19 21:11:08 +01:00
|
|
|
th:first-child {
|
|
|
|
|
border-radius: 3px 0 0 0;
|
2014-02-25 19:10:16 +01:00
|
|
|
border-left: none;
|
2014-02-19 21:11:08 +01:00
|
|
|
}
|
|
|
|
|
th:last-child {
|
|
|
|
|
border-radius: 0 3px 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tr {border: none;}
|
2016-03-15 23:55:49 +02:00
|
|
|
tbody td {border-left: 1px solid #FFFFFF;}
|
2014-02-19 21:11:08 +01:00
|
|
|
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
|
2014-04-14 14:33:43 +03:00
|
|
|
vertical-align: middle;
|
2014-02-19 21:11:08 +01:00
|
|
|
border-top: none;
|
2015-07-12 22:43:45 +03:00
|
|
|
}
|
|
|
|
|
table.invoice-table>thead>tr>th, table.invoice-table>tbody>tr>th, table.invoice-table>tfoot>tr>th, table.invoice-table>thead>tr>td, table.invoice-table>tbody>tr>td, table.invoice-table>tfoot>tr>td {
|
2014-02-21 14:02:59 +01:00
|
|
|
border-bottom: 1px solid #dfe0e1;
|
2014-02-19 21:11:08 +01:00
|
|
|
}
|
|
|
|
|
table.dataTable.no-footer {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
2016-05-30 11:51:41 +03:00
|
|
|
.table-striped>tbody>tr:nth-child(odd)>tr,
|
2014-11-16 12:41:07 +02:00
|
|
|
.table-striped>tbody>tr:nth-child(odd)>th {
|
|
|
|
|
background-color: #FDFDFD;
|
2014-02-21 14:02:59 +01:00
|
|
|
}
|
|
|
|
|
table.table thead .sorting_asc {
|
|
|
|
|
background: url('../images/sort_asc.png') no-repeat 90% 50%;
|
|
|
|
|
}
|
|
|
|
|
table.table thead .sorting_desc {
|
|
|
|
|
background: url('../images/sort_desc.png') no-repeat 90% 50%;
|
|
|
|
|
}
|
2014-02-23 17:10:56 +01:00
|
|
|
table.dataTable thead th, table.dataTable thead td, table.invoice-table thead th, table.invoice-table thead td {
|
|
|
|
|
padding: 12px 10px;
|
|
|
|
|
}
|
|
|
|
|
table.dataTable tbody th, table.dataTable tbody td {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-13 10:11:44 +03:00
|
|
|
table.data-table tr {
|
|
|
|
|
border-bottom: 1px solid #d0d0d0;
|
|
|
|
|
border-top: 1px solid #d0d0d0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-23 14:24:19 +01:00
|
|
|
.datepicker {
|
|
|
|
|
padding: 4px !important;
|
|
|
|
|
margin-top: 1px;
|
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
.datepicker.dropdown-menu {
|
|
|
|
|
border: 1px solid #dfe0e1;
|
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
|
|
|
|
|
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
|
|
|
|
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
|
|
|
|
|
color: #333333;
|
|
|
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
}
|
|
|
|
|
.datepicker table {font-size: 12px; border-spacing:2px;}
|
|
|
|
|
.datepicker td, .datepicker th { width:30px; }
|
|
|
|
|
.datepicker table tr td.active.active, .datepicker table tr td.active:hover.active {
|
2016-09-05 08:10:39 +03:00
|
|
|
background-color: #337ab7;
|
2014-02-23 14:24:19 +01:00
|
|
|
background-image:none;
|
|
|
|
|
}
|
|
|
|
|
.datepicker table tr td.today { color: #333; background-color: #edd71e !important; background-image:none; text-shadow:none;}
|
|
|
|
|
.datepicker table tr td.today:hover { color: #333; background-color: #edd71e !important; background-image:none; text-shadow:none;}
|
|
|
|
|
.datepicker table tr td.today.active:hover {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-23 14:53:22 +01:00
|
|
|
/*modals*/
|
2014-03-18 16:17:49 +01:00
|
|
|
.modal .container {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
2014-02-23 14:53:22 +01:00
|
|
|
.modal-header {
|
2014-03-18 16:17:49 +01:00
|
|
|
border-bottom: none;
|
2016-09-05 08:10:39 +03:00
|
|
|
background-color: #337ab7;
|
2014-03-18 16:17:49 +01:00
|
|
|
padding: 20px;
|
|
|
|
|
color: #fff;
|
2014-02-23 14:53:22 +01:00
|
|
|
}
|
|
|
|
|
.modal-footer {
|
|
|
|
|
background-color: #f8f8f8;
|
2014-03-18 16:17:49 +01:00
|
|
|
border-top: none;
|
2014-02-23 14:53:22 +01:00
|
|
|
}
|
|
|
|
|
.modal thead {
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
.modal .table>thead>tr>th {
|
|
|
|
|
border-bottom: 1px solid #dfe0e1 !important; padding-top: 30px;
|
2014-03-18 16:17:49 +01:00
|
|
|
background: #fff !important;
|
|
|
|
|
color: #333 !important;
|
2014-02-23 14:53:22 +01:00
|
|
|
}
|
|
|
|
|
.modal .table>thead>tr>th:first-child, .modal .table>thead>tr>th:last-child {
|
|
|
|
|
border-bottom: none !important;
|
|
|
|
|
}
|
2014-03-18 16:17:49 +01:00
|
|
|
.modal .close {
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-shadow: none;
|
|
|
|
|
opacity: .8;
|
|
|
|
|
filter: alpha(opacity=80);
|
|
|
|
|
}
|
|
|
|
|
.modal .close:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
}
|
2014-02-19 16:34:32 +01:00
|
|
|
/*buttons*/
|
2016-05-30 11:51:41 +03:00
|
|
|
.btn { font-weight: bold;
|
2014-02-19 21:11:08 +01:00
|
|
|
border-radius: 3px;
|
|
|
|
|
padding: 9px 12px;
|
|
|
|
|
}
|
2014-02-19 16:34:32 +01:00
|
|
|
.btn-success {
|
|
|
|
|
background-color: #36c157 !important;
|
|
|
|
|
border-color: #36c157 !important;
|
|
|
|
|
}
|
2014-02-21 14:02:59 +01:00
|
|
|
.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-color:#33b753 !important; border-color:#33b753 !important;}
|
2014-02-19 16:34:32 +01:00
|
|
|
.btn-sm, .btn-group-sm>.btn {
|
2014-02-19 21:11:08 +01:00
|
|
|
padding: 5px 10px;
|
2014-02-19 16:34:32 +01:00
|
|
|
}
|
|
|
|
|
.btn-group.open .dropdown-toggle {
|
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
2017-03-27 13:17:09 +03:00
|
|
|
.btn-info:disabled {
|
|
|
|
|
background-color: #e89259 !important;
|
|
|
|
|
border-color: #e89259 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-05 22:18:35 +03:00
|
|
|
/*
|
2016-09-02 17:53:16 +03:00
|
|
|
.xbtn-primary {
|
|
|
|
|
background-color: #34495E;
|
|
|
|
|
border-color: #34495E;
|
2014-02-19 16:34:32 +01:00
|
|
|
}
|
2016-09-02 17:53:16 +03:00
|
|
|
.xbtn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
|
2014-02-21 14:02:59 +01:00
|
|
|
background-color: #0a456c;
|
|
|
|
|
border-color: #0a456c;
|
2014-02-19 16:34:32 +01:00
|
|
|
}
|
2016-09-05 22:18:35 +03:00
|
|
|
*/
|
2014-02-21 14:02:59 +01:00
|
|
|
.btn-default {background-color: #808080;
|
|
|
|
|
border-color: #808080;
|
2014-02-19 16:34:32 +01:00
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #737373;
|
|
|
|
|
border-color: #737373;
|
|
|
|
|
}
|
2014-02-21 14:02:59 +01:00
|
|
|
.btn-info {background-color: #e27329;
|
|
|
|
|
border-color: #e27329;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #d66d27;
|
|
|
|
|
border-color: #d66d27;
|
|
|
|
|
}
|
2014-02-19 16:34:32 +01:00
|
|
|
.btn-lg, .btn-group-lg>.btn {
|
|
|
|
|
padding: 10px 16px;
|
|
|
|
|
font-size: 18px;
|
2014-02-19 21:11:08 +01:00
|
|
|
height: auto;
|
2014-02-21 14:02:59 +01:00
|
|
|
}
|
|
|
|
|
.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
|
|
|
|
|
background-color: #b5b5b5;
|
|
|
|
|
border-color: #b5b5b5;
|
2014-02-19 16:34:32 +01:00
|
|
|
}
|
|
|
|
|
.input-group-addon {
|
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
|
border: 1px solid #dfe0e1;
|
2014-02-19 21:11:08 +01:00
|
|
|
border-radius: 3px;
|
2014-02-19 16:34:32 +01:00
|
|
|
cursor:pointer;
|
|
|
|
|
}
|
|
|
|
|
.caret {
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
}
|
|
|
|
|
.btn i.glyphicon { font-size: 16px; margin-left:7px; top: 2px; }
|
2016-09-02 17:53:16 +03:00
|
|
|
|
2014-02-19 16:34:32 +01:00
|
|
|
.btn-primary i{
|
2016-09-05 08:10:39 +03:00
|
|
|
xborder-color: #337ab7;
|
2014-02-19 16:34:32 +01:00
|
|
|
}
|
2015-06-04 23:53:58 +03:00
|
|
|
|
|
|
|
|
.form-actions .btn,
|
2016-05-30 11:51:41 +03:00
|
|
|
.form-actions div.btn-group {
|
|
|
|
|
margin-left: 10px;
|
2015-06-04 23:53:58 +03:00
|
|
|
}
|
2014-02-21 14:02:59 +01:00
|
|
|
|
|
|
|
|
.form-actions .btn.btn-success:first-child {
|
|
|
|
|
margin-left: 10px !important;
|
|
|
|
|
}
|
2014-02-19 16:34:32 +01:00
|
|
|
|
2014-03-18 11:01:02 +01:00
|
|
|
/*alerts*/
|
|
|
|
|
|
|
|
|
|
.alert {
|
|
|
|
|
padding: 15px;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-19 16:34:32 +01:00
|
|
|
/*new*/
|
|
|
|
|
|
2014-09-17 09:26:01 +03:00
|
|
|
div.input-group {
|
|
|
|
|
word-break: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-02 10:27:48 +02:00
|
|
|
div.required > label {
|
|
|
|
|
font-weight: bold !important;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-24 16:27:36 -05:00
|
|
|
label.checkbox,
|
2014-02-03 12:34:58 +02:00
|
|
|
label.control-label {
|
2013-12-29 19:40:11 +02:00
|
|
|
font-weight: normal !important;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
|
|
|
|
|
2014-02-17 01:09:34 +02:00
|
|
|
.breadcrumb {
|
|
|
|
|
background-color: inherit;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
}
|
2013-12-24 16:27:36 -05:00
|
|
|
|
|
|
|
|
div.panel {
|
2013-12-29 19:40:11 +02:00
|
|
|
padding-left: 0px !important;
|
|
|
|
|
padding-right: 0px !important;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
2014-02-19 16:34:32 +01:00
|
|
|
.panel {
|
2017-02-20 12:27:26 +02:00
|
|
|
box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 1px 1px rgba(0,0,0,.2);
|
|
|
|
|
border-color: #ffffff !important;
|
2014-02-19 16:34:32 +01:00
|
|
|
}
|
2013-12-24 16:27:36 -05:00
|
|
|
|
2014-02-16 22:32:25 +02:00
|
|
|
.pointer {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-24 16:27:36 -05:00
|
|
|
.form-actions {
|
|
|
|
|
margin: 0;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-08 20:09:47 +00:00
|
|
|
.less-space-bottom {
|
|
|
|
|
padding-bottom: 4px !important;
|
|
|
|
|
margin-bottom: 4px !important;
|
2014-01-06 08:48:11 +02:00
|
|
|
}
|
2013-12-24 16:27:36 -05:00
|
|
|
|
|
|
|
|
/* DataTables and BootStrap */
|
|
|
|
|
.dataTables_wrapper {
|
2013-12-29 19:40:11 +02:00
|
|
|
padding-top: 16px;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table.table thead > tr > th {
|
2013-12-29 19:40:11 +02:00
|
|
|
border-bottom-width: 0px;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
|
|
|
|
|
2014-01-14 11:52:56 +00:00
|
|
|
table td {
|
|
|
|
|
max-width: 250px;
|
|
|
|
|
}
|
2014-02-19 21:11:08 +01:00
|
|
|
.pagination>li:first-child>a, .pagination>li:first-child>span {
|
|
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
|
}
|
2014-01-14 11:52:56 +00:00
|
|
|
|
2016-11-18 15:31:43 +02:00
|
|
|
|
|
|
|
|
.dt-right,
|
|
|
|
|
.dt-left {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
.pagination>ul {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-17 01:09:34 +02:00
|
|
|
/* hide table sorting indicators */
|
|
|
|
|
table.table thead .sorting { background: url('') no-repeat center right; }
|
2013-12-24 16:27:36 -05:00
|
|
|
|
2013-12-29 19:40:11 +02:00
|
|
|
|
2014-01-05 16:03:29 +02:00
|
|
|
|
2014-02-19 16:34:32 +01:00
|
|
|
/* navigation */
|
2013-12-24 16:27:36 -05:00
|
|
|
.sidebar-nav {
|
|
|
|
|
padding: 9px 0;
|
|
|
|
|
}
|
|
|
|
|
.dropdown-menu .sub-menu {
|
|
|
|
|
left: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown-menu li:hover .sub-menu {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown:hover .dropdown-menu {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-19 21:11:08 +01:00
|
|
|
.navbar-nav>li>a {
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
}
|
2013-12-24 16:27:36 -05:00
|
|
|
.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu, .navbar .dropdown-menu {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-25 19:10:16 +01:00
|
|
|
.nav-tabs { color:#fff; }
|
|
|
|
|
.nav-tabs.nav-justified>li>a {
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #9b9b9b;
|
2016-05-30 11:51:41 +03:00
|
|
|
|
2014-02-25 19:10:16 +01:00
|
|
|
}
|
|
|
|
|
.nav-tabs.nav-justified>li:first-child>a {
|
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
|
border-left: none;
|
|
|
|
|
}
|
|
|
|
|
.nav-tabs.nav-justified>li:last-child>a {
|
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
|
}
|
|
|
|
|
.nav-tabs.nav-justified>li>a:hover {
|
|
|
|
|
background-color:#8a8a8a;
|
|
|
|
|
}
|
|
|
|
|
.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus {
|
|
|
|
|
border: none;
|
2016-09-05 22:18:35 +03:00
|
|
|
font-weight: bold;
|
2014-02-25 19:10:16 +01:00
|
|
|
color: #fff;
|
|
|
|
|
}
|
2014-02-16 22:32:25 +02:00
|
|
|
.navbar {
|
2016-09-05 08:10:39 +03:00
|
|
|
xbackground-color: #337ab7 !important;
|
2014-02-16 22:32:25 +02:00
|
|
|
background-image: none;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
filter: none;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-23 20:28:45 +03:00
|
|
|
.navbar-collapse {
|
2016-09-05 08:10:39 +03:00
|
|
|
xbackground-color: #337ab7;
|
2016-08-23 20:28:45 +03:00
|
|
|
}
|
|
|
|
|
|
2017-06-21 15:52:54 +03:00
|
|
|
.navbar {
|
2017-07-03 22:20:13 +03:00
|
|
|
x-moz-box-shadow: 0 0 8px 2px rgba(0,0,0,.6);
|
|
|
|
|
x-webkit-box-shadow: 0 0 8px 2px rgba(0,0,0,.6);
|
|
|
|
|
box-shadow: 0 0 8px 2px rgba(0,0,0,.6);
|
2017-06-21 15:52:54 +03:00
|
|
|
}
|
|
|
|
|
|
2016-03-21 13:42:00 +02:00
|
|
|
ul.dropdown-menu,
|
2016-04-13 10:40:27 +03:00
|
|
|
.twitter-typeahead .tt-menu {
|
2016-03-23 15:15:18 +02:00
|
|
|
x-moz-box-shadow: 0 0 10px 2px rgba(0,0,0,.05);
|
2016-05-30 11:51:41 +03:00
|
|
|
x-webkit-box-shadow: 0 0 10px 2px rgba(0,0,0,.05);
|
2016-03-23 15:15:18 +02:00
|
|
|
box-shadow: 0 0 10px 2px rgba(0,0,0,.05);
|
2016-03-21 13:42:00 +02:00
|
|
|
}
|
|
|
|
|
|
2016-05-05 22:16:02 +03:00
|
|
|
.twitter-typeahead .tt-menu {
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-09 23:25:02 +03:00
|
|
|
ul.typeahead li:first-child {
|
|
|
|
|
border-top: solid 1px #EEE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul.typeahead li {
|
|
|
|
|
border-bottom: solid 1px #EEE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.combobox-container .active {
|
|
|
|
|
border-color: #EEE !important;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-13 10:40:27 +03:00
|
|
|
.panel-default,
|
|
|
|
|
canvas {
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
border-color: #e5e6e9 #dfe0e4 #d0d1d5;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 11:45:17 +03:00
|
|
|
.modal .panel-default {
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-16 22:32:25 +02:00
|
|
|
.navbar .active > a {
|
|
|
|
|
background-color: #09334f !important;
|
|
|
|
|
background-image: none;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
filter: none;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-24 16:27:36 -05:00
|
|
|
.navbar .sub-menu:before {
|
|
|
|
|
border-bottom: 7px solid transparent;
|
|
|
|
|
border-left: none;
|
|
|
|
|
border-right: 7px solid rgba(0, 0, 0, 0.2);
|
|
|
|
|
border-top: 7px solid transparent;
|
|
|
|
|
left: -7px;
|
|
|
|
|
top: 10px;
|
|
|
|
|
}
|
|
|
|
|
.navbar .sub-menu:after {
|
|
|
|
|
border-top: 6px solid transparent;
|
|
|
|
|
border-left: none;
|
|
|
|
|
border-right: 6px solid #fff;
|
|
|
|
|
border-bottom: 6px solid transparent;
|
|
|
|
|
left: 10px;
|
|
|
|
|
top: 11px;
|
|
|
|
|
left: -6px;
|
|
|
|
|
}
|
2014-02-19 21:11:08 +01:00
|
|
|
.navbar-brand {
|
|
|
|
|
padding-top:20px;
|
|
|
|
|
}
|
2014-02-19 16:34:32 +01:00
|
|
|
.dropdown-menu {
|
|
|
|
|
left: 0;
|
2014-02-23 14:24:19 +01:00
|
|
|
top: 100%;
|
2014-02-19 16:34:32 +01:00
|
|
|
min-width: 160px;
|
|
|
|
|
padding: 5px 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
border: none;
|
2014-02-19 21:11:08 +01:00
|
|
|
border-radius: 3px;
|
2014-02-19 16:34:32 +01:00
|
|
|
-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.05);
|
|
|
|
|
box-shadow: 0 6px 12px rgba(0,0,0,.05);
|
|
|
|
|
background-clip: padding-box;
|
|
|
|
|
}
|
2013-12-24 16:27:36 -05:00
|
|
|
|
|
|
|
|
|
2014-02-17 01:09:34 +02:00
|
|
|
/***********************************************
|
2016-05-30 11:51:41 +03:00
|
|
|
Dashboard
|
2014-02-17 01:09:34 +02:00
|
|
|
************************************************/
|
2014-02-16 22:32:25 +02:00
|
|
|
|
|
|
|
|
.in-bold {
|
|
|
|
|
font-size: 26px;
|
2017-05-14 20:35:28 +03:00
|
|
|
font-weight: bold;
|
2014-02-16 22:32:25 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-14 20:35:28 +03:00
|
|
|
.in-large {
|
|
|
|
|
font-size: 26px;
|
|
|
|
|
}
|
2014-02-16 22:32:25 +02:00
|
|
|
|
|
|
|
|
.in-thin {
|
|
|
|
|
font-size: 26px;
|
2014-02-23 15:51:52 +01:00
|
|
|
font-weight: 100;
|
2014-02-16 22:32:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.in-bold-white {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.in-image {
|
2016-08-16 23:32:23 +02:00
|
|
|
float: left;
|
|
|
|
|
margin-right: 25px;
|
2014-02-16 22:32:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.in-white {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.active-clients {
|
|
|
|
|
background-image:url('../images/activeclients.png');
|
|
|
|
|
background-position:center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
height: 200px;
|
|
|
|
|
padding-top: 44px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.average-invoice {
|
|
|
|
|
background-color: #ecd817;
|
2015-01-22 15:36:16 +02:00
|
|
|
min-height: 200px;
|
2014-02-16 22:32:25 +02:00
|
|
|
padding-top: 60px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-02 19:16:00 +02:00
|
|
|
.invoice-table tbody {
|
2013-12-29 19:40:11 +02:00
|
|
|
border-style: none !important;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
2014-02-23 15:51:52 +01:00
|
|
|
.panel-body {padding: 25px;}
|
|
|
|
|
|
2014-02-27 12:42:23 +01:00
|
|
|
.dashboard .panel-heading { margin: -1px; }
|
|
|
|
|
|
2014-02-23 15:51:52 +01:00
|
|
|
.dashboard .panel-body {padding: 0;}
|
|
|
|
|
|
|
|
|
|
.dashboard th {
|
|
|
|
|
border-left: none;
|
|
|
|
|
background-color: #fbfbfb;
|
|
|
|
|
border-bottom: 1px solid #dfe0e1;
|
|
|
|
|
}
|
2015-07-29 22:55:12 +03:00
|
|
|
|
2014-02-23 15:51:52 +01:00
|
|
|
.dashboard table.table thead > tr > th {
|
|
|
|
|
border-bottom-width: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard .table-striped>tbody>tr>td:first-child { padding-left: 15px; }
|
|
|
|
|
.dashboard .table-striped>thead>tr>th:first-child { padding-left: 15px; }
|
2013-12-24 16:27:36 -05:00
|
|
|
|
2014-07-20 13:38:42 +03:00
|
|
|
|
|
|
|
|
.invoice-table tfoot input {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-02-17 01:09:34 +02:00
|
|
|
/***********************************************
|
|
|
|
|
New/edit invoice page
|
|
|
|
|
************************************************/
|
|
|
|
|
|
2014-02-21 14:02:59 +01:00
|
|
|
table.invoice-table { color:#333; }
|
|
|
|
|
|
|
|
|
|
table.invoice-table th:first-child {
|
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
|
}
|
|
|
|
|
table.invoice-table th:last-child {
|
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-17 18:25:38 +02:00
|
|
|
.invoice-table td.hide-border,
|
|
|
|
|
.invoice-table th.hide-border {
|
|
|
|
|
border-style: none !important;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
|
|
|
|
|
2014-02-17 18:25:38 +02:00
|
|
|
.invoice-table .line-total {
|
|
|
|
|
padding-top: 6px;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.invoice-table td.td-icon {
|
2013-12-29 19:40:11 +02:00
|
|
|
vertical-align: middle !important;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
|
|
|
|
|
2014-02-17 18:25:38 +02:00
|
|
|
.fa-sort {
|
2013-12-29 19:40:11 +02:00
|
|
|
cursor: move !important;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.closer-row {
|
2013-12-29 19:40:11 +02:00
|
|
|
margin-bottom: 2px;
|
2013-12-24 16:27:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Animate col width changes */
|
2016-10-16 09:38:04 -04:00
|
|
|
/*
|
2014-01-01 01:50:13 +02:00
|
|
|
body {
|
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
|
transition: all 0.5s ease;
|
2013-12-29 19:40:11 +02:00
|
|
|
}
|
2016-10-16 09:38:04 -04:00
|
|
|
*/
|
2014-01-02 19:16:00 +02:00
|
|
|
|
2017-10-26 00:35:38 +03:00
|
|
|
div.no-padding-or-border span {
|
2014-12-04 00:05:38 +02:00
|
|
|
padding: 0px;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#is_amount_discount {
|
|
|
|
|
min-width: 120px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-29 20:21:37 -04:00
|
|
|
/***********************************************
|
|
|
|
|
New/edit invoice page
|
|
|
|
|
************************************************/
|
2014-01-02 19:16:00 +02:00
|
|
|
|
2014-03-29 20:21:37 -04:00
|
|
|
.two-column .form-group div {
|
|
|
|
|
-webkit-column-count:2; /* Chrome, Safari, Opera */
|
|
|
|
|
-moz-column-count:2; /* Firefox */
|
|
|
|
|
column-count:2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.two-column .form-group div .radio {
|
|
|
|
|
margin-left:10px;
|
|
|
|
|
}
|
2014-01-02 19:16:00 +02:00
|
|
|
|
2014-02-17 01:09:34 +02:00
|
|
|
/***********************************************
|
|
|
|
|
Add mouse over drop down to header menu
|
|
|
|
|
************************************************/
|
2014-01-02 19:16:00 +02:00
|
|
|
|
|
|
|
|
.navbar-default {
|
|
|
|
|
background-color: #428bff;
|
2014-02-19 16:34:32 +01:00
|
|
|
border-color: transparent;
|
2014-01-02 19:16:00 +02:00
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-brand {
|
|
|
|
|
color: #ecf0f1;
|
|
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-brand:hover,
|
|
|
|
|
.navbar-default .navbar-brand:focus {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-nav > li > a {
|
|
|
|
|
color: #ecf0f1;
|
|
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-nav > li > a:hover,
|
|
|
|
|
.navbar-default .navbar-nav > li > a:focus {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
2016-05-30 11:51:41 +03:00
|
|
|
.navbar-default .navbar-nav > .active > a,
|
|
|
|
|
.navbar-default .navbar-nav > .active > a:hover,
|
2014-01-02 19:16:00 +02:00
|
|
|
.navbar-default .navbar-nav > .active > a:focus {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #3276b1;
|
|
|
|
|
}
|
2016-05-30 11:51:41 +03:00
|
|
|
.navbar-default .navbar-nav > .open > a,
|
|
|
|
|
.navbar-default .navbar-nav > .open > a:hover,
|
2014-01-02 19:16:00 +02:00
|
|
|
.navbar-default .navbar-nav > .open > a:focus {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: #3276b1;
|
|
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-nav > .dropdown > a .caret {
|
|
|
|
|
border-top-color: #ecf0f1;
|
|
|
|
|
border-bottom-color: #ecf0f1;
|
|
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-nav > .dropdown > a:hover .caret,
|
|
|
|
|
.navbar-default .navbar-nav > .dropdown > a:focus .caret {
|
|
|
|
|
border-top-color: #ffffff;
|
|
|
|
|
border-bottom-color: #ffffff;
|
|
|
|
|
}
|
2016-05-30 11:51:41 +03:00
|
|
|
.navbar-default .navbar-nav > .open > a .caret,
|
|
|
|
|
.navbar-default .navbar-nav > .open > a:hover .caret,
|
2014-01-02 19:16:00 +02:00
|
|
|
.navbar-default .navbar-nav > .open > a:focus .caret {
|
|
|
|
|
border-top-color: #ffffff;
|
|
|
|
|
border-bottom-color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-toggle {
|
|
|
|
|
border-color: #3276b1;
|
|
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-toggle:hover,
|
|
|
|
|
.navbar-default .navbar-toggle:focus {
|
|
|
|
|
background-color: #3276b1;
|
|
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-toggle .icon-bar {
|
|
|
|
|
background-color: #ecf0f1;
|
|
|
|
|
}
|
2014-02-25 19:10:16 +01:00
|
|
|
.navbar-form { margin-top: 15px; padding-right:0; }
|
|
|
|
|
.navbar-form:first-child { padding-right: 0; }
|
2014-02-19 16:34:32 +01:00
|
|
|
.navbar-form .form-control { height: 30px; }
|
2014-02-25 19:10:16 +01:00
|
|
|
.twitter-typeahead .tt-hint {
|
|
|
|
|
height: 30px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
2014-02-19 16:34:32 +01:00
|
|
|
.navbar-form .btn-default {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #09334f;
|
|
|
|
|
border-color: #09334f;
|
|
|
|
|
}
|
|
|
|
|
.navbar-form .dropdown-toggle.btn-default {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #08273c;
|
|
|
|
|
border-color: #08273c;
|
|
|
|
|
}
|
2014-03-19 18:17:26 +02:00
|
|
|
#signUpPopOver {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2014-03-23 13:11:04 +02:00
|
|
|
div.fb_iframe_widget {
|
2014-03-23 15:36:18 +02:00
|
|
|
display: inline;
|
2014-03-23 13:11:04 +02:00
|
|
|
}
|
|
|
|
|
div.fb_iframe_widget > span {
|
2016-05-30 11:51:41 +03:00
|
|
|
vertical-align: top !important;
|
2014-03-23 13:11:04 +02:00
|
|
|
}
|
2014-04-18 11:57:31 +03:00
|
|
|
.pro-label {
|
|
|
|
|
font-size:9px;
|
|
|
|
|
}
|
2014-03-23 15:36:18 +02:00
|
|
|
|
2014-05-04 18:49:57 +03:00
|
|
|
|
|
|
|
|
.plans-table {float: none; margin-top: 10px; }
|
|
|
|
|
.plans-table div {text-align:center; margin: 0 auto; }
|
|
|
|
|
|
|
|
|
|
.plans-table .free, .plans-table .desc { padding: 0; }
|
|
|
|
|
.plans-table .free .cell { padding-right: 15px; }
|
|
|
|
|
.plans-table .desc .cell { text-align: right; padding-right: 15px; border-left: 1px solid #dfe0e1; font-size: 13px; font-weight: 800; }
|
|
|
|
|
.plans-table .pro .cell { border-left: 1px solid #cccccc; border-right: 1px solid #cccccc;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.plans-table .cell {background-color: #fff; border-top: 1px solid #dfe0e1;padding: 18px 0; font-family: Roboto, sans-serif; height: 60px;}
|
|
|
|
|
.plans-table .cell:nth-child(odd){background-color: #fbfbfb;}
|
|
|
|
|
.plans-table .pro .cell:nth-child(odd){background-color: #f4f4f4;}
|
|
|
|
|
.plans-table .pro {
|
|
|
|
|
background-color: #2299c0;
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
padding: 0;
|
|
|
|
|
-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 5, 5, 0.2);
|
|
|
|
|
-moz-box-shadow: 0px 0px 15px 0px rgba(0, 5, 5, 0.2);
|
|
|
|
|
box-shadow: 0px 0px 15px 0px rgba(0, 5, 5, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plans-table .free .cell:first-child, .plans-table .pro .cell:first-child {color: #fff; text-transform: uppercase; font-size: 24px; font-weight:800; line-height: 60px; padding: 0; position: relative; bottom: -1px; border: none;}
|
|
|
|
|
.plans-table .free .cell:first-child {background-color: #9b9b9b; margin-right: 15px; padding-right: 0;}
|
|
|
|
|
.plans-table .free, .plans-table .desc {border-bottom: 1px solid #dfe0e1;}
|
|
|
|
|
.plans-table .pro .cell:first-child {background-color: #2299c0;}
|
|
|
|
|
.plans-table .pro .cell:last-child {padding: 0; border: none;}
|
|
|
|
|
.plans-table .desc .cell:first-child {background-color: transparent; border: none;}
|
|
|
|
|
|
|
|
|
|
.plans-table .glyphicon {color: #fff; border-radius: 50px; padding: 5px; font-size: 10px;}
|
|
|
|
|
.plans-table .glyphicon-remove {background-color: #da4830;}
|
|
|
|
|
.plans-table .glyphicon-ok {background-color: #35c156;}
|
|
|
|
|
.plans-table .glyphicon-star {border-radius: 0; background-color: #2e2b2b;
|
2016-05-30 11:51:41 +03:00
|
|
|
display: block;
|
|
|
|
|
width: 60px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -5px;
|
|
|
|
|
right: -20px;
|
2014-05-04 18:49:57 +03:00
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
|
-moz-transform: rotate(45deg);
|
|
|
|
|
-o-transform: rotate(45deg);
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
padding: 13px 0 0 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plans-table .price {padding: 0; }
|
|
|
|
|
.plans-table .free .price p {color: #35c156;}
|
|
|
|
|
.plans-table .pro .price p {color: #2299c0;}
|
|
|
|
|
.plans-table .price p {font-size: 40px; text-transform: uppercase; font-weight: 800; margin: 0; line-height: 55px;}
|
|
|
|
|
.plans-table .price p span {font-size: 16px; text-transform: none; font-weight: 400;}
|
|
|
|
|
|
|
|
|
|
.plans-table a .cta h2 {background: #2299c0; color:#fff; margin: 0;}
|
|
|
|
|
.plans-table a .cta h2 span {background: #1e84a5;}
|
|
|
|
|
|
|
|
|
|
|
2014-11-04 20:32:18 +02:00
|
|
|
.checkbox-inline input[type="checkbox"] {
|
|
|
|
|
margin-left: 0px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-10-24 13:48:59 +03:00
|
|
|
#designThumbs img {
|
|
|
|
|
border: 1px solid #CCCCCC;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-12 17:22:54 +02:00
|
|
|
.ellipsis {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
2016-05-30 11:51:41 +03:00
|
|
|
text-overflow: ellipsis;
|
2014-11-12 17:22:54 +02:00
|
|
|
}
|
|
|
|
|
|
2014-11-23 23:47:10 +02:00
|
|
|
.entityArchived {
|
2016-05-30 11:51:41 +03:00
|
|
|
color: #888 !important;
|
2014-11-23 23:47:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entityDeleted {
|
|
|
|
|
text-decoration: line-through;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-14 20:18:19 +03:00
|
|
|
|
2016-05-30 11:51:41 +03:00
|
|
|
/* Custom, iPhone Retina */
|
2015-10-14 20:18:19 +03:00
|
|
|
@media only screen and (min-width : 320px) {
|
2016-05-30 11:51:41 +03:00
|
|
|
|
2014-05-04 18:49:57 +03:00
|
|
|
}
|
|
|
|
|
|
2016-05-30 11:51:41 +03:00
|
|
|
/* Extra Small Devices, Phones */
|
2015-10-14 20:18:19 +03:00
|
|
|
@media only screen and (min-width : 480px) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Small Devices, Tablets */
|
|
|
|
|
@media only screen and (min-width : 768px) {
|
|
|
|
|
.form-padding-right {
|
|
|
|
|
padding-right: 40px;
|
|
|
|
|
}
|
2016-08-23 23:20:03 +03:00
|
|
|
|
2016-08-23 13:42:17 +03:00
|
|
|
.hide-non-phone {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2014-07-17 00:04:56 +03:00
|
|
|
}
|
|
|
|
|
|
2015-10-14 20:18:19 +03:00
|
|
|
/* Medium Devices, Desktops */
|
|
|
|
|
@media only screen and (min-width : 992px) {
|
|
|
|
|
.form-padding-right {
|
|
|
|
|
padding-right: 100px;
|
|
|
|
|
}
|
2014-07-17 00:04:56 +03:00
|
|
|
.medium-dialog {
|
|
|
|
|
width: 760px;
|
|
|
|
|
}
|
|
|
|
|
.large-dialog {
|
2017-02-19 13:59:17 +02:00
|
|
|
width: 960px !important;
|
2015-10-14 20:18:19 +03:00
|
|
|
}
|
2016-03-14 23:37:13 +02:00
|
|
|
.hide-desktop {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-02 19:16:00 +02:00
|
|
|
@media (max-width: 767px) {
|
2014-07-17 00:04:56 +03:00
|
|
|
.test-class{color:black;}
|
|
|
|
|
|
2014-01-02 19:16:00 +02:00
|
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
|
|
|
|
color: #ecf0f1;
|
|
|
|
|
}
|
|
|
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
|
|
|
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
2014-05-04 18:49:57 +03:00
|
|
|
|
|
|
|
|
.plans-table .cell {height: auto; padding: 14px 0; }
|
|
|
|
|
.plans-table .free .cell { padding-right: 0; }
|
|
|
|
|
.plans-table .free .cell:first-child {margin-right: 0;}
|
|
|
|
|
.plans-table .cell div:first-child {margin-bottom: 5px;}
|
2016-05-30 11:51:41 +03:00
|
|
|
.plans-table .cell .cta {margin-bottom: 0 !important;}
|
|
|
|
|
.plans-table .pro {margin-top: 40px;}
|
2016-08-23 23:20:03 +03:00
|
|
|
|
|
|
|
|
.hide-phone {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2014-05-04 18:49:57 +03:00
|
|
|
}
|
2015-01-22 11:23:52 +02:00
|
|
|
|
2015-01-22 15:32:54 +02:00
|
|
|
label[for=recommendedGateway_id2].radio{
|
|
|
|
|
min-height: 60px;
|
2015-01-22 15:16:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide bootstrap sort header icons */
|
|
|
|
|
table.table thead .sorting:after { content: '' !important }
|
|
|
|
|
table.table thead .sorting_asc:after { content: '' !important }
|
|
|
|
|
table.table thead .sorting_desc:after { content: '' !important}
|
|
|
|
|
table.table thead .sorting_asc_disabled:after { content: '' !important }
|
|
|
|
|
table.table thead .sorting_desc_disabled:after { content: '' !important }
|
2015-01-25 08:48:40 +02:00
|
|
|
|
|
|
|
|
/* Prevent modal from shifting page a bit - https://github.com/twbs/bootstrap/issues/9886 */
|
2015-02-19 12:35:46 +02:00
|
|
|
body.modal-open { overflow:inherit; padding-right:inherit !important; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* bootstrap 3.2.0 fix */
|
|
|
|
|
/* https://github.com/twbs/bootstrap/issues/13984 */
|
|
|
|
|
.radio input[type="radio"],
|
|
|
|
|
.checkbox input[type="checkbox"] {
|
|
|
|
|
margin-left: 0;
|
2015-04-16 20:12:56 +03:00
|
|
|
padding-left: 0px !important;
|
2015-02-19 12:35:46 +02:00
|
|
|
margin-right: 5px;
|
|
|
|
|
height: inherit;
|
|
|
|
|
width: inherit;
|
|
|
|
|
float: left;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
}
|
2015-04-16 20:12:56 +03:00
|
|
|
|
|
|
|
|
div.checkbox > label {
|
|
|
|
|
padding-left: 0px !important;
|
2015-04-20 17:34:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container input[type=text],
|
|
|
|
|
.container input[type=email],
|
|
|
|
|
.container textarea,
|
|
|
|
|
.container select {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
width: 100%;
|
|
|
|
|
color: #000 !important;
|
|
|
|
|
background: #f9f9f9 !important;
|
2015-04-21 23:09:45 +03:00
|
|
|
/*border: 1px solid #ebe7e7;*/
|
2015-04-20 17:34:23 +03:00
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-31 15:37:29 +03:00
|
|
|
.container input:focus,
|
|
|
|
|
.container textarea:focus,
|
|
|
|
|
.container select:focus {
|
2015-06-01 17:34:00 +03:00
|
|
|
background: #fdfdfd !important;
|
2015-05-31 15:37:29 +03:00
|
|
|
}
|
|
|
|
|
|
2015-04-20 17:34:23 +03:00
|
|
|
.container input[placeholder],
|
|
|
|
|
.container textarea[placeholder],
|
|
|
|
|
.container select[placeholder] {
|
|
|
|
|
color: #444444;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-22 22:21:04 +03:00
|
|
|
.container input:disabled,
|
|
|
|
|
.container textarea:disabled,
|
|
|
|
|
.container select:disabled {
|
|
|
|
|
background-color: #EEE !important;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-20 17:34:23 +03:00
|
|
|
.panel-title {
|
|
|
|
|
font-size: 18px;
|
2015-04-22 22:21:04 +03:00
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-27 19:52:10 +03:00
|
|
|
div.alert {
|
2015-05-27 23:20:35 +03:00
|
|
|
z-index: 1;
|
2015-04-22 22:21:04 +03:00
|
|
|
}
|
2015-04-23 00:40:21 +03:00
|
|
|
|
|
|
|
|
.alert-hide {
|
|
|
|
|
position: absolute;
|
2016-09-26 09:29:29 +03:00
|
|
|
margin-left: 40%;
|
2015-04-23 00:40:21 +03:00
|
|
|
z-index: 9999;
|
2015-04-28 23:13:52 +03:00
|
|
|
}
|
|
|
|
|
|
2015-04-30 20:54:19 +03:00
|
|
|
div.dataTables_length {
|
2015-04-28 23:13:52 +03:00
|
|
|
padding-left: 20px;
|
2015-04-30 20:54:19 +03:00
|
|
|
padding-top: 10px;
|
2015-04-28 23:13:52 +03:00
|
|
|
}
|
|
|
|
|
|
2015-04-30 20:54:19 +03:00
|
|
|
div.dataTables_length select {
|
|
|
|
|
background-color: white !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.dataTables_length label {
|
2015-04-28 23:13:52 +03:00
|
|
|
font-weight: 500;
|
2015-05-10 11:45:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a .glyphicon,
|
|
|
|
|
button .glyphicon {
|
2015-11-11 18:24:48 +02:00
|
|
|
padding-left: 12px;
|
2015-06-10 23:55:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pro-plan-modal {
|
|
|
|
|
background-color: #4b4b4b;
|
|
|
|
|
padding-bottom: 40px;
|
|
|
|
|
padding-right: 25px;
|
2015-06-12 11:39:53 +03:00
|
|
|
opacity:0.95 !important;
|
2015-06-10 23:55:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pro-plan-modal .left-side {
|
|
|
|
|
margin-top: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pro-plan-modal h2 {
|
|
|
|
|
color: #36c157;
|
|
|
|
|
font-size: 71px;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pro-plan-modal img.price {
|
|
|
|
|
height: 90px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pro-plan-modal a.button {
|
|
|
|
|
font-family: 'roboto_slabregular', Georgia, Times, serif;
|
2016-05-30 11:51:41 +03:00
|
|
|
background: #f38c4f;
|
|
|
|
|
background: -moz-linear-gradient(top, #f38c4f 0%, #db7134 100%);
|
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f38c4f), color-stop(100%,#db7134));
|
|
|
|
|
background: -webkit-linear-gradient(top, #f38c4f 0%,#db7134 100%);
|
|
|
|
|
background: -o-linear-gradient(top, #f38c4f 0%,#db7134 100%);
|
|
|
|
|
background: -ms-linear-gradient(top, #f38c4f 0%,#db7134 100%);
|
|
|
|
|
background: linear-gradient(to bottom, #f38c4f 0%,#db7134 100%);
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f38c4f', endColorstr='#db7134',GradientType=0 );
|
2015-06-10 23:55:23 +03:00
|
|
|
text-shadow: 1px 1px 1px rgba(0, 0, 0, .25);
|
|
|
|
|
width: 68%;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 20px 0;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pro-plan-modal a.button:hover {
|
|
|
|
|
background: #db7134; /* Old browsers */
|
|
|
|
|
background: -moz-linear-gradient(top, #db7134 0%, #f38c4f 100%); /* FF3.6+ */
|
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#db7134), color-stop(100%,#f38c4f)); /* Chrome,Safari4+ */
|
|
|
|
|
background: -webkit-linear-gradient(top, #db7134 0%,#f38c4f 100%); /* Chrome10+,Safari5.1+ */
|
|
|
|
|
background: -o-linear-gradient(top, #db7134 0%,#f38c4f 100%); /* Opera 11.10+ */
|
|
|
|
|
background: -ms-linear-gradient(top, #db7134 0%,#f38c4f 100%); /* IE10+ */
|
|
|
|
|
background: linear-gradient(to bottom, #db7134 0%,#f38c4f 100%); /* W3C */
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db7134', endColorstr='#f38c4f',GradientType=0 ); /* IE6-9 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.pro-plan-modal ul {
|
|
|
|
|
color: #fff;
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0 0 30px 0;
|
|
|
|
|
text-align: left;
|
|
|
|
|
white-space: pre-line;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pro-plan-modal ul li {
|
|
|
|
|
font-family: 'roboto_slabregular', Georgia, Times, serif;
|
|
|
|
|
background: url('../images/pro_plan/check.png') no-repeat 0px 12px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
line-height: 36px;
|
|
|
|
|
padding: 0 0 0 19px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pro-plan-modal img.close {
|
|
|
|
|
width: 35px;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
2015-06-16 22:35:35 +03:00
|
|
|
|
|
|
|
|
ul.user-accounts div.account {
|
|
|
|
|
font-size: large;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul.user-accounts div.remove {
|
|
|
|
|
padding-top: 14px;
|
|
|
|
|
color: #BBB;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul.user-accounts a:hover div.remove {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-21 14:25:36 +02:00
|
|
|
.invoice-contact {
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-15 17:14:13 +03:00
|
|
|
.invoice-contact .tooltip-inner {
|
2015-10-11 17:41:09 +03:00
|
|
|
text-align:left;
|
2016-05-30 11:51:41 +03:00
|
|
|
width: 350px;
|
2015-10-14 17:15:39 +03:00
|
|
|
}
|
|
|
|
|
|
2015-12-28 12:15:56 +02:00
|
|
|
.smaller {
|
|
|
|
|
font-size: .9em;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-01 15:58:52 +02:00
|
|
|
td.right {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-14 17:15:39 +03:00
|
|
|
/* Show selected section in settings nav */
|
|
|
|
|
.list-group-item.selected:before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
2017-02-07 16:32:50 +02:00
|
|
|
width: 3px;
|
2015-10-14 17:15:39 +03:00
|
|
|
content: "";
|
|
|
|
|
background-color: #e37329;
|
2015-11-18 16:40:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.panel-body div.panel-body {
|
|
|
|
|
padding-bottom: 0px;
|
2016-03-22 22:23:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Attached Documents */
|
2016-03-24 18:15:52 -04:00
|
|
|
#document-upload {
|
2016-03-22 22:23:45 -04:00
|
|
|
border:1px solid #ebe7e7;
|
|
|
|
|
background:#f9f9f9 !important;
|
|
|
|
|
border-radius:3px;
|
2016-03-24 18:15:52 -04:00
|
|
|
padding:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.invoice-table #document-upload{
|
2017-07-04 12:53:21 +03:00
|
|
|
width: 100%;
|
2016-03-24 18:15:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#document-upload .dropzone{
|
|
|
|
|
background:none;
|
|
|
|
|
border:none;
|
|
|
|
|
padding:0;
|
2016-03-22 22:23:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropzone .dz-preview.dz-image-preview{
|
|
|
|
|
background:none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropzone .dz-preview .dz-image{
|
|
|
|
|
border-radius:5px!important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropzone .dz-preview.dz-image-preview .dz-image img{
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2016-03-24 15:13:54 -04:00
|
|
|
}
|
2016-09-15 13:41:09 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Limits */
|
|
|
|
|
.noUi-target,
|
|
|
|
|
.noUi-target * {
|
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-ms-touch-action: none;
|
|
|
|
|
touch-action: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.noUi-target {
|
|
|
|
|
position: relative;
|
|
|
|
|
direction: ltr;
|
|
|
|
|
margin:0 17px;
|
|
|
|
|
}
|
|
|
|
|
.noUi-base {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1; /* Fix 401 */
|
|
|
|
|
}
|
|
|
|
|
.noUi-origin {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.noUi-handle {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
.noUi-stacking .noUi-handle {
|
|
|
|
|
/* This class is applied to the lower origin when
|
|
|
|
|
its values is > 50%. */
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
.noUi-state-tap .noUi-origin {
|
|
|
|
|
-webkit-transition: left 0.3s, top 0.3s;
|
|
|
|
|
transition: left 0.3s, top 0.3s;
|
|
|
|
|
}
|
|
|
|
|
.noUi-state-drag * {
|
|
|
|
|
cursor: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
.noUi-base,
|
|
|
|
|
.noUi-handle {
|
|
|
|
|
-webkit-transform: translate3d(0,0,0);
|
|
|
|
|
transform: translate3d(0,0,0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.noUi-horizontal {
|
|
|
|
|
height: 15px;
|
|
|
|
|
}
|
|
|
|
|
.noUi-horizontal .noUi-handle {
|
|
|
|
|
width: 34px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
left: -17px;
|
|
|
|
|
top: -6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.noUi-background {
|
|
|
|
|
background: #f9f9f9;
|
|
|
|
|
}
|
|
|
|
|
.noUi-connect {
|
|
|
|
|
background: #286090;
|
|
|
|
|
}
|
|
|
|
|
.noUi-origin {
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
}
|
|
|
|
|
.noUi-target {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.noUi-draggable {
|
|
|
|
|
cursor: w-resize;
|
|
|
|
|
}
|
|
|
|
|
.noUi-vertical .noUi-draggable {
|
|
|
|
|
cursor: n-resize;
|
|
|
|
|
}
|
|
|
|
|
.noUi-handle {
|
|
|
|
|
border: 1px solid #777;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.noUi-handle:before,
|
|
|
|
|
.noUi-handle:after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 13px;
|
|
|
|
|
width: 1px;
|
|
|
|
|
background: #777;
|
|
|
|
|
left: 14px;
|
|
|
|
|
top: 5px;
|
|
|
|
|
}
|
|
|
|
|
.noUi-handle:after {
|
|
|
|
|
left: 17px;
|
|
|
|
|
}
|
|
|
|
|
.noUi-vertical .noUi-handle:before,
|
|
|
|
|
.noUi-vertical .noUi-handle:after {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 1px;
|
|
|
|
|
left: 6px;
|
|
|
|
|
top: 14px;
|
|
|
|
|
}
|
|
|
|
|
.noUi-vertical .noUi-handle:after {
|
|
|
|
|
top: 17px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#payment-limits-slider{
|
|
|
|
|
margin-bottom:10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#payment-limit-min-container .input-group,
|
|
|
|
|
#payment-limit-max-container .input-group{
|
|
|
|
|
max-width:200px;
|
|
|
|
|
clear:both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#payment-limit-max-container{
|
|
|
|
|
text-align:right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#payment-limit-max-container .input-group,
|
|
|
|
|
#payment-limit-max-container label{
|
|
|
|
|
float:right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#payment-limit-min[disabled],
|
|
|
|
|
#payment-limit-max[disabled]{
|
|
|
|
|
background-color: #eee!important;
|
|
|
|
|
color: #999!important;
|
2016-09-26 09:29:29 +03:00
|
|
|
}
|
2016-10-18 17:55:07 +03:00
|
|
|
|
|
|
|
|
.breadcrumb .label {
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
}
|
2016-11-03 16:54:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* BlueVine Promo
|
|
|
|
|
*/
|
|
|
|
|
@media (min-width: 900px) {
|
|
|
|
|
#bluevineModal .modal-dialog{
|
|
|
|
|
width:800px;
|
|
|
|
|
}
|
2016-11-10 18:24:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bluevine-quote .row{
|
|
|
|
|
text-align: right;
|
2016-11-17 16:29:02 +02:00
|
|
|
}
|
2016-11-24 11:22:37 +02:00
|
|
|
|
|
|
|
|
.select2-selection {
|
|
|
|
|
border: 1px solid #dfe0e1 !important;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
}
|
2017-02-18 23:20:03 +02:00
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-footer {
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
}
|
2017-06-13 15:55:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#upgrade-modal {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 999999;
|
|
|
|
|
#background-color: rgba(76,76,76,.99);
|
|
|
|
|
background-color: rgba(0,0,0,.9);
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
min-height: 1500px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal h1 {
|
|
|
|
|
font-family: 'roboto-thin', 'roboto', Helvetica, arial, sans-serif;
|
|
|
|
|
font-size: 28px!important;
|
|
|
|
|
padding: 0 0 25px 0;
|
|
|
|
|
margin: 0!important;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding-top: 0px;
|
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal h2 {
|
|
|
|
|
font-family: 'roboto-thin', 'roboto', Helvetica, arial, sans-serif;
|
|
|
|
|
color: #36c157;
|
|
|
|
|
font-size: 34px;
|
|
|
|
|
line-height: 15px;
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-weight: 100;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal h3 {
|
|
|
|
|
font-family: 'roboto-thin', 'roboto', Helvetica, arial, sans-serif;
|
|
|
|
|
margin: 20px 0 25px 0;
|
|
|
|
|
font-size: 75px;
|
|
|
|
|
padding: 0 0 8px 0;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 100;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal h3 span.upgrade_frequency {
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
vertical-align: super;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal h4 {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal ul {
|
|
|
|
|
list-style: none;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 20px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal .col-md-4 {
|
|
|
|
|
padding:75px 20px;
|
|
|
|
|
border-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal .col-md-offset-2 {
|
|
|
|
|
border-top: 1px solid #343333;
|
|
|
|
|
border-right: 1px solid #343333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal .columns {
|
|
|
|
|
border-top: 1px solid #343333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal ul {
|
|
|
|
|
border-top: 1px solid #343333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal ul li {
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
line-height: 35px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal p.subhead {
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
margin: 5px 0 5px 0;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal .btn {
|
|
|
|
|
width: 260px;
|
|
|
|
|
padding: 16px 0 16px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal i.fa-close {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 26px !important;
|
|
|
|
|
padding-top: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal label.radio-inline {
|
|
|
|
|
padding: 0px 30px 30px 30px;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#upgrade-modal select {
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
width: 140px;
|
|
|
|
|
}
|
2017-10-26 00:35:38 +03:00
|
|
|
|
|
|
|
|
.no-gutter > [class*='col-'] {
|
|
|
|
|
padding-right:0;
|
|
|
|
|
padding-left:0;
|
|
|
|
|
}
|
2018-04-17 21:52:14 +03:00
|
|
|
|
|
|
|
|
.input-group-addon .glyphicon-question-sign {
|
|
|
|
|
color: #117cc1;
|
|
|
|
|
}
|