general.css 3.56 KB
Newer Older
Luis Gangas committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
.fix-label{
  width: 100%;
  text-align: left;
  font-size: 13px; 
  font-weight: 500;
}

/* PAGE-HEADER */
.page-title{
  padding: 16px 36px 16px 0;
}

/* ACTIVE LINK */
.navigation > li > ul li:first-child{
  padding-top: 0;
}

/* ACTIVE LINK */
.navigation > li > ul li:last-child{
  padding-bottom: 0;
}

.navbar-header{
  width: 200px;
}

.media-left, .media > .pull-left{
  padding-right: 0;
}

/* USER CONTENT */
.tp-sidebar-category-content{
  display: flex;
  flex-direction: column;
  text-align: center;
  background: url("../../img/edited_02.jpg") no-repeat center;
  background-size: cover;
  box-shadow: inset 0px 0px 13px 0px rgba(0,0,0,0.75)

}


.header-highlight .navbar-header:not([class*=bg-]){
  box-shadow: none;
  background-color: var(--primary-color-dark);
}

/* SIDEBAR NAVIGATION */
.navigation > li ul li a{
  padding: 8px 52px;
  min-height: 36px;
}

.navigation > li > a{
  padding: 8px 20px 8px 16px;
  min-height: 36px;
}

.navigation .navigation-header{
  padding: 10px 16px;
}

.navigation > li.active > a, .navigation > li.active > a:hover, .navigation > li.active > a:focus{
  background-color: var(--primary-color);
}

/* PANELES */
.panel-heading{
  padding: 9px 15px;
}

/* SIDEBAR */
.sidebar{
  background-color: var(--primary-color-dark);
  box-shadow: inset 0px 0px 13px 0px rgba(0,0,0,0.75);
}

/* NAVBAR */
.navbar-inverse{
  background-color: var(--primary-color-dark);
  border: none;
}

/* TABLA */
.table-xxs > thead > tr > th, .table-xxs > tbody > tr > th, .table-xxs > tfoot > tr > th, .table-xxs > thead > tr > td, .table-xxs > tbody > tr > td, .table-xxs > tfoot > tr > td{
  padding: 2px 10px;
}

.table tr, .table th, .table td, .htContextMenu td, .ranges ul li{
  height: 30px;
}

.datatable-header{
  padding-top: 0px;
}

/* BOTONES */
.btn{
  padding: 5px 8px;
}

/* HEADING ELEMENTS */
.heading-elements{
  margin-top: -16px;
}

@media only screen and (max-width: 768px){
  .panel-heading .visible-elements{
    margin: 15px -15px 0 -15px;
  }
  .panel .visible-elements{
    padding: 8px;
  }

  .sidebar-mobile-main .sidebar-main, .sidebar-mobile-secondary .sidebar-secondary, .sidebar-mobile-opposite .sidebar-opposite, .sidebar-mobile-detached .sidebar-detached > .sidebar{
    width: 100%;
  }

  .sidebar-user + .sidebar-category .navigation{
    padding-bottom: 0;
  }

  .sidebar-content{
    padding-bottom: 0px;
  }
}

/* BREADCRUMBS */
.breadcrumb{
  padding: 7px 0;
}
/* MODALES */
.modal-header[class*=bg-]{
  padding: 9px 15px;
}

/* MEDIA OBJECTS */
.media-left, .media > .pull-left{
  padding-right: 15px;
}

/* JQUERY CONFIRMATION */
.jconfirm .jconfirm-box.jconfirm-type-blue{
  border-top: solid 7px #3ba4ce;
}
.jconfirm .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c{
  color: #3ba4ce !important;
}

/* HEADER */
.tp-header-right-table-button{
  width: 180px;
}
.tp-header-right-table-button > i{
  font-size: 20px;
}

@media only screen and (min-width: 769px) {
  .sidebar{
    width: 200px;
  }
  .navbar-header{
    min-width: 200px;
  }

  .sidebar-xs .sidebar-main .navigation > li > a > span{
    background-color:var(--primary-color);
    border: 1px solid var(--primary-color);
    right: -200px;
    width: 200px;
    padding: 7px 20px;
  }

  .sidebar-xs .sidebar-main .navigation > li.active > ul{
    position: absolute;
    top: 36px;
    width: 200px;
    right: -200px;
  }

  .sidebar-xs .sidebar-main .navigation > li > ul{
    position: absolute;
    top: 36px;
    width: 200px;
    right: -200px;
  }
}

@media only screen and (max-width: 768px) {
  .sidebar{
    width: 200px;
  }
  .navbar-header{
    min-width: 100%;
  }
}