| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- /* bootstrap */
- .btn.active.focus,
- .btn.active:focus,
- .btn.focus,
- .btn:active.focus,
- .btn:active:focus,
- .btn:focus {
- outline: none !important;
- }
- .btn-group + .btn {
- margin-left: 4px;
- }
- .btn-sm.promise-btn-style {
- padding-top: 6px;
- padding-bottom: 6px;
- }
- .btn.btn-xs:not(.is-loading) .btn-spinner:not(:required) {
- margin-left: -21px;
- }
- .progress-bar {
- -webkit-transition: initial !important;
- -moz-transition: initial !important;
- -ms-transition: initial !important;
- -o-transition: initial !important;
- transition: initial !important;
- }
- .input-group-addon-compact {
- padding: 0 4px 0 4px;
- }
- .nav-tabs-custom .nav-tabs > li > a {
- display: inline-block;
- }
- .nav-tabs-custom .nav-tabs > li > a.nav-tab-close {
- padding-left: 0;
- margin-left: -12px;
- }
- .nav-tabs-custom .nav-tabs > li.nav-tab-title-rpcname > a {
- max-width: 180px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- vertical-align: bottom;
- }
- @media (max-width: 991px) {
- .nav-tabs-custom .nav-tabs > li.nav-tab-title-rpcname > a {
- max-width: 150px;
- }
- }
- @media (max-width: 767px) {
- .nav-tabs-custom .nav-tabs > li.nav-tab-title-rpcname > a {
- max-width: 120px;
- }
- }
- .input-group.input-group-multiple > .input-group-addon {
- border-left: 0;
- border-right: 0;
- }
- .input-group.input-group-multiple > .input-group-addon:first-child,
- .input-group.input-group-multiple > .input-group-addon-container:first-child {
- border-left: 1px solid #d2d6de;
- }
- .input-group .input-group-addon-container {
- width: 1%;
- display: table-cell;
- }
- .label {
- font-size: 85%;
- }
- /* font-awesome extend */
- .fa-half {
- font-size: 0.5em;
- }
- .fa-1_1x {
- font-size: 1.1em;
- }
- .fa-rotate-45 {
- -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
- filter: none;
- }
- .fa-right-bottom {
- position: relative;
- right: 0;
- bottom: -6px;
- }
- .fa-display-order {
- margin-left: 3px;
- }
- .fa-order-asc, .fa-order-desc {
- position: relative;
- }
- .fa-order-asc {
- bottom: -2px;
- }
- .fa-order-desc {
- bottom: 2px;
- }
- /* awesome-bootstrap-checkbox extend */
- .checkbox input[type="checkbox"]:focus + label::before,
- .checkbox input[type="radio"]:focus + label::before {
- outline: none !important;
- }
- .checkbox input[type="checkbox"],
- .checkbox input[type="radio"] {
- cursor: pointer;
- }
- .checkbox input.disable-clickable {
- pointer-events: none !important;
- }
- .checkbox.checkbox-hide {
- padding-left: 0;
- }
- .checkbox.checkbox-hide > input, .checkbox.checkbox-hide > input + label::before, .checkbox.checkbox-hide > input + label::after {
- display: none !important;
- }
- .checkbox.checkbox-hide > label {
- padding-left: 0;
- }
- .checkbox-compact {
- margin-top: 2px;
- margin-bottom: 2px;
- }
- .checkbox-inline {
- display: inline-block;
- }
- .icon-dir-expand + .checkbox {
- margin-left: 6px;
- }
- /* angular-input-dropdown */
- input-dropdown[input-class-name="form-control"] > .input-dropdown {
- width: 100%
- }
- .input-dropdown ul {
- border: 1px solid #888;
- }
- .input-dropdown ul > li.active {
- background-color: #e1e3e9;
- }
- .input-dropdown ul > li {
- padding: 2px 14px 2px 14px;
- }
- /* angular-dragula extend */
- .gu-mirror {
- cursor: grabbing;
- cursor: -moz-grabbing;
- cursor: -webkit-grabbing;
- }
|