Commit cc91221b46c5b54ee7289cbcf16b7349e7686aa3
1 parent
867077bb47
Exists in
master
and in
1 other branch
arreglo sombra de punteros (logistica)
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/sass/general.scss
| 1 | @import 'constants'; | 1 | @import 'constants'; |
| 2 | @import 'admin-seguimiento'; | 2 | @import 'admin-seguimiento'; |
| 3 | @import 'bootstrap'; | 3 | @import 'bootstrap'; |
| 4 | @import 'botonera'; | 4 | @import 'botonera'; |
| 5 | @import 'botonera-lateral'; | 5 | @import 'botonera-lateral'; |
| 6 | @import 'botonera-principal'; | 6 | @import 'botonera-principal'; |
| 7 | @import 'botonera-secundaria'; | 7 | @import 'botonera-secundaria'; |
| 8 | @import 'contenedor'; | 8 | @import 'contenedor'; |
| 9 | @import 'lista'; | 9 | @import 'lista'; |
| 10 | @import 'login'; | 10 | @import 'login'; |
| 11 | @import 'panel-informativo'; | 11 | @import 'panel-informativo'; |
| 12 | @import 'tabla'; | 12 | @import 'tabla'; |
| 13 | @import 'teclado'; | 13 | @import 'teclado'; |
| 14 | @import 'tabla-articulos'; | 14 | @import 'tabla-articulos'; |
| 15 | @import 'acciones-mobile'; | 15 | @import 'acciones-mobile'; |
| 16 | @import 'swiper'; | 16 | @import 'swiper'; |
| 17 | @import 'foca-crear'; | 17 | @import 'foca-crear'; |
| 18 | @import 'logistica-pedido-ruta'; | 18 | @import 'logistica-pedido-ruta'; |
| 19 | @import 'tabs'; | 19 | @import 'tabs'; |
| 20 | @import 'grid'; | 20 | @import 'grid'; |
| 21 | @import 'paginador-abm'; | 21 | @import 'paginador-abm'; |
| 22 | @import 'table-autorizar-nota-pedido'; | 22 | @import 'table-autorizar-nota-pedido'; |
| 23 | 23 | ||
| 24 | 24 | ||
| 25 | //OCULTA FLECHAS INPUT NUMBER | 25 | //OCULTA FLECHAS INPUT NUMBER |
| 26 | input[type='number'] { | 26 | input[type='number'] { |
| 27 | -moz-appearance:textfield; | 27 | -moz-appearance:textfield; |
| 28 | } | 28 | } |
| 29 | 29 | ||
| 30 | input::-webkit-outer-spin-button, | 30 | input::-webkit-outer-spin-button, |
| 31 | input::-webkit-inner-spin-button { | 31 | input::-webkit-inner-spin-button { |
| 32 | -webkit-appearance: none; | 32 | -webkit-appearance: none; |
| 33 | } | 33 | } |
| 34 | 34 | ||
| 35 | .d-md-grid{ | 35 | .d-md-grid{ |
| 36 | @media (min-width: 768px) { | 36 | @media (min-width: 768px) { |
| 37 | display: grid !important; | 37 | display: grid !important; |
| 38 | } | 38 | } |
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | .btn-dashed{ | 41 | .btn-dashed{ |
| 42 | border-style: dashed !important; | 42 | border-style: dashed !important; |
| 43 | border-width: 3px; | 43 | border-width: 3px; |
| 44 | border-color: white; | 44 | border-color: white; |
| 45 | background-color: #dedfe0; | 45 | background-color: #dedfe0; |
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | .marcador { | 48 | .marcador { |
| 49 | position: absolute; | 49 | position: absolute; |
| 50 | right: 97px; | 50 | right: 44.5%; |
| 51 | bottom: -50px; | 51 | bottom: -32%; |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | .informacion{ | 54 | .informacion{ |
| 55 | position: absolute; | 55 | position: absolute; |
| 56 | right: 18px; | 56 | right: 18px; |
| 57 | bottom: 5px; | 57 | bottom: 5px; |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | .flashit{ | 60 | .flashit{ |
| 61 | -webkit-animation: flash linear 1s infinite; | 61 | -webkit-animation: flash linear 1s infinite; |
| 62 | animation: flash linear 1s infinite; | 62 | animation: flash linear 1s infinite; |
| 63 | } | 63 | } |
| 64 | @-webkit-keyframes flash { | 64 | @-webkit-keyframes flash { |
| 65 | 0% { opacity: 1; } | 65 | 0% { opacity: 1; } |
| 66 | 50% { opacity: .6; } | 66 | 50% { opacity: .6; } |
| 67 | 100% { opacity: 1; } | 67 | 100% { opacity: 1; } |
| 68 | } | 68 | } |
| 69 | @keyframes flash { | 69 | @keyframes flash { |
| 70 | 0% { opacity: 1; } | 70 | 0% { opacity: 1; } |
| 71 | 50% { opacity: .6; } | 71 | 50% { opacity: .6; } |
| 72 | 100% { opacity: 1; } | 72 | 100% { opacity: 1; } |
| 73 | } | 73 | } |
| 74 | 74 | ||
| 75 | .btn-outline-debo{ | 75 | .btn-outline-debo{ |
| 76 | background-color: transparent; | 76 | background-color: transparent; |
| 77 | color: $primary; | 77 | color: $primary; |
| 78 | border-color: $primary; | 78 | border-color: $primary; |
| 79 | &:hover{ | 79 | &:hover{ |
| 80 | color: #FFF; | 80 | color: #FFF; |
| 81 | border-color: transparent; | 81 | border-color: transparent; |
| 82 | background-color: $primary; | 82 | background-color: $primary; |
| 83 | } | 83 | } |
| 84 | &:focus { | 84 | &:focus { |
| 85 | box-shadow: 0px 0px 0px 3px $primaryTransparency !important; | 85 | box-shadow: 0px 0px 0px 3px $primaryTransparency !important; |
| 86 | } | 86 | } |
| 87 | &:active { | 87 | &:active { |
| 88 | color: #FFF; | 88 | color: #FFF; |
| 89 | background-color: $primary !important; | 89 | background-color: $primary !important; |
| 90 | box-shadow: 0px 0px 0px 3px $primaryTransparency !important; | 90 | box-shadow: 0px 0px 0px 3px $primaryTransparency !important; |
| 91 | } | 91 | } |
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | .input-group-append > button { | 94 | .input-group-append > button { |
| 95 | &:focus { | 95 | &:focus { |
| 96 | border-color: $primary !important; | 96 | border-color: $primary !important; |
| 97 | box-shadow: 0 0 5px $primary !important; | 97 | box-shadow: 0 0 5px $primary !important; |
| 98 | } | 98 | } |
| 99 | &:active { | 99 | &:active { |
| 100 | border-color: $primary !important; | 100 | border-color: $primary !important; |
| 101 | box-shadow: 0 0 5px $primary !important; | 101 | box-shadow: 0 0 5px $primary !important; |
| 102 | } | 102 | } |
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | .alert { | 105 | .alert { |
| 106 | white-space:pre-wrap | 106 | white-space:pre-wrap |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | .input-group-append > button { | 109 | .input-group-append > button { |
| 110 | &:focus { | 110 | &:focus { |
| 111 | border-color: $primary !important; | 111 | border-color: $primary !important; |
| 112 | box-shadow: 0 0 5px $primary !important; | 112 | box-shadow: 0 0 5px $primary !important; |
| 113 | } | 113 | } |
| 114 | &:active { | 114 | &:active { |
| 115 | border-color: $primary !important; | 115 | border-color: $primary !important; |
| 116 | box-shadow: 0 0 5px $primary !important; | 116 | box-shadow: 0 0 5px $primary !important; |
| 117 | } | 117 | } |
| 118 | } | 118 | } |
| 119 | 119 | ||
| 120 | 120 | ||
| 121 | .btn-login { | 121 | .btn-login { |
| 122 | box-shadow: none !important; | 122 | box-shadow: none !important; |
| 123 | } | 123 | } |
| 124 | 124 | ||
| 125 | input[type="file"] { | 125 | input[type="file"] { |
| 126 | display: none; | 126 | display: none; |
| 127 | } | 127 | } |
| 128 | .custom-file-upload { | 128 | .custom-file-upload { |
| 129 | border: 1px solid #ccc; | 129 | border: 1px solid #ccc; |
| 130 | display: inline-block; | 130 | display: inline-block; |
| 131 | padding: 6px 12px; | 131 | padding: 6px 12px; |
| 132 | cursor: pointer; | 132 | cursor: pointer; |
| 133 | } | 133 | } |
| 134 | 134 | ||
| 135 | .btn-brown { | 135 | .btn-brown { |
| 136 | background-color:$primary; | 136 | background-color:$primary; |
| 137 | -webkit-appearance: none; | 137 | -webkit-appearance: none; |
| 138 | border-color: transparent; | 138 | border-color: transparent; |
| 139 | &:focus { | 139 | &:focus { |
| 140 | outline: 0 !important; | 140 | outline: 0 !important; |
| 141 | box-shadow: none; | 141 | box-shadow: none; |
| 142 | } | 142 | } |
| 143 | .icon-white { | 143 | .icon-white { |
| 144 | color: white; | 144 | color: white; |
| 145 | } | 145 | } |
| 146 | } | 146 | } |
| 147 | 147 | ||
| 148 | .btn-Guardar { | 148 | .btn-Guardar { |
| 149 | background-color:green; | 149 | background-color:green; |
| 150 | -webkit-appearance: none; | 150 | -webkit-appearance: none; |
| 151 | border-color: transparent; | 151 | border-color: transparent; |
| 152 | &:focus { | 152 | &:focus { |
| 153 | outline: 0 !important; | 153 | outline: 0 !important; |
| 154 | box-shadow: none; | 154 | box-shadow: none; |
| 155 | } | 155 | } |
| 156 | .icon-white { | 156 | .icon-white { |
| 157 | color: white; | 157 | color: white; |
| 158 | } | 158 | } |
| 159 | } | 159 | } |
| 160 | 160 | ||
| 161 | .page-item.active .page-link { | 161 | .page-item.active .page-link { |
| 162 | z-index: 1; | 162 | z-index: 1; |
| 163 | color: #fff; | 163 | color: #fff; |
| 164 | background-color: $primary; | 164 | background-color: $primary; |
| 165 | border-color: $primary; | 165 | border-color: $primary; |
| 166 | } | 166 | } |
| 167 | 167 | ||
| 168 | .foca-input { | 168 | .foca-input { |
| 169 | &:focus { | 169 | &:focus { |
| 170 | border-color: $primary; | 170 | border-color: $primary; |
| 171 | box-shadow: 0 0 5px $primary; | 171 | box-shadow: 0 0 5px $primary; |
| 172 | } | 172 | } |
| 173 | &:hover { | 173 | &:hover { |
| 174 | border-color: $primary; | 174 | border-color: $primary; |
| 175 | box-shadow: 0 0 5px $primary; | 175 | box-shadow: 0 0 5px $primary; |
| 176 | } | 176 | } |
| 177 | } | 177 | } |
| 178 | 178 | ||
| 179 | .btn-enviar { | 179 | .btn-enviar { |
| 180 | background-color: white; | 180 | background-color: white; |
| 181 | border-color: #cd9035; | 181 | border-color: #cd9035; |
| 182 | &:focus { | 182 | &:focus { |
| 183 | box-shadow: none !important; | 183 | box-shadow: none !important; |
| 184 | } | 184 | } |
| 185 | &:hover { | 185 | &:hover { |
| 186 | border-color: $primaryTransparency !important; | 186 | border-color: $primaryTransparency !important; |
| 187 | background-color: $primaryTransparency !important; | 187 | background-color: $primaryTransparency !important; |
| 188 | } | 188 | } |
| 189 | &:active{ | 189 | &:active{ |
| 190 | background-color: $primary !important; | 190 | background-color: $primary !important; |
| 191 | box-shadow: 0px 0px 0px 3px $primaryTransparency !important; | 191 | box-shadow: 0px 0px 0px 3px $primaryTransparency !important; |
| 192 | } | 192 | } |
| 193 | } | 193 | } |
| 194 | 194 | ||
| 195 | .btn-primary { | 195 | .btn-primary { |
| 196 | background-color: $primary !important; | 196 | background-color: $primary !important; |
| 197 | border-color: $primary !important; | 197 | border-color: $primary !important; |
| 198 | &:focus { | 198 | &:focus { |
| 199 | box-shadow: none !important; | 199 | box-shadow: none !important; |
| 200 | } | 200 | } |
| 201 | &:hover { | 201 | &:hover { |
| 202 | border-color: $primaryTransparency !important; | 202 | border-color: $primaryTransparency !important; |
| 203 | background-color: $primaryTransparency !important; | 203 | background-color: $primaryTransparency !important; |
| 204 | } | 204 | } |
| 205 | &:active{ | 205 | &:active{ |
| 206 | background-color: $primary !important; | 206 | background-color: $primary !important; |
| 207 | box-shadow: 0px 0px 0px 3px $primaryTransparency !important; | 207 | box-shadow: 0px 0px 0px 3px $primaryTransparency !important; |
| 208 | } | 208 | } |
| 209 | } | 209 | } |
| 210 | 210 | ||
| 211 | .input-group-text { | 211 | .input-group-text { |
| 212 | &:focus { | 212 | &:focus { |
| 213 | outline: none; | 213 | outline: none; |
| 214 | border-color: $primary; | 214 | border-color: $primary; |
| 215 | box-shadow: 0 0 5px $primary; | 215 | box-shadow: 0 0 5px $primary; |
| 216 | } | 216 | } |
| 217 | &:hover { | 217 | &:hover { |
| 218 | border-color: $primary; | 218 | border-color: $primary; |
| 219 | box-shadow: 0 0 5px $primary; | 219 | box-shadow: 0 0 5px $primary; |
| 220 | } | 220 | } |
| 221 | &:active{ | 221 | &:active{ |
| 222 | box-shadow: 0 0 5px $primary; | 222 | box-shadow: 0 0 5px $primary; |
| 223 | } | 223 | } |
| 224 | } | 224 | } |
| 225 | 225 | ||
| 226 | .btn-default { | 226 | .btn-default { |
| 227 | color: #FFF; | 227 | color: #FFF; |
| 228 | background-color: $default !important; | 228 | background-color: $default !important; |
| 229 | border-color: $default !important; | 229 | border-color: $default !important; |
| 230 | &:focus { | 230 | &:focus { |
| 231 | box-shadow: none !important; | 231 | box-shadow: none !important; |
| 232 | } | 232 | } |
| 233 | &:hover { | 233 | &:hover { |
| 234 | color: #FFF; | 234 | color: #FFF; |
| 235 | border-color: $defaultTransparency !important; | 235 | border-color: $defaultTransparency !important; |
| 236 | background-color: $defaultTransparency !important; | 236 | background-color: $defaultTransparency !important; |
| 237 | } | 237 | } |
| 238 | &:active{ | 238 | &:active{ |
| 239 | background-color: $default !important; | 239 | background-color: $default !important; |
| 240 | box-shadow: 0px 0px 0px 3px $defaultTransparency !important; | 240 | box-shadow: 0px 0px 0px 3px $defaultTransparency !important; |
| 241 | } | 241 | } |
| 242 | } | 242 | } |
| 243 | 243 | ||
| 244 | .btn-danger { | 244 | .btn-danger { |
| 245 | &:hover { | 245 | &:hover { |
| 246 | color: #FFF; | 246 | color: #FFF; |
| 247 | border-color: $dangerTransparency !important; | 247 | border-color: $dangerTransparency !important; |
| 248 | background-color: $dangerTransparency !important; | 248 | background-color: $dangerTransparency !important; |
| 249 | } | 249 | } |
| 250 | } | 250 | } |
| 251 | 251 | ||
| 252 | .table-celda-total { | 252 | .table-celda-total { |
| 253 | background-color: $highlightedArea; | 253 | background-color: $highlightedArea; |
| 254 | } | 254 | } |
| 255 | 255 | ||
| 256 | marquee { | 256 | marquee { |
| 257 | background-color: $highlightedArea; | 257 | background-color: $highlightedArea; |
| 258 | } | 258 | } |
| 259 | 259 | ||
| 260 | .front-index{ | 260 | .front-index{ |
| 261 | z-index: 9999; | 261 | z-index: 9999; |
| 262 | } | 262 | } |
| 263 | 263 | ||
| 264 | .uib-daypicker{ | 264 | .uib-daypicker{ |
| 265 | outline: 0 | 265 | outline: 0 |
| 266 | } | 266 | } |
| 267 | 267 | ||
| 268 | .right-0{ | 268 | .right-0{ |
| 269 | right: 0; | 269 | right: 0; |
| 270 | } | 270 | } |
| 271 | 271 | ||
| 272 | .tabla-factura{ | 272 | .tabla-factura{ |
| 273 | word-wrap: break-word; | 273 | word-wrap: break-word; |
| 274 | table-layout: fixed; | 274 | table-layout: fixed; |
| 275 | } | 275 | } |
| 276 | 276 | ||
| 277 | .ladda-w-100 .ladda-label{ | 277 | .ladda-w-100 .ladda-label{ |
| 278 | width: 100%; | 278 | width: 100%; |
| 279 | float: right; | 279 | float: right; |
| 280 | } | 280 | } |
| 281 | 281 | ||
| 282 | .btn-delete-image{ | 282 | .btn-delete-image{ |
| 283 | height: 25px; | 283 | height: 25px; |
| 284 | width: 25px; | 284 | width: 25px; |
| 285 | top: -10px; | 285 | top: -10px; |
| 286 | right: 0; | 286 | right: 0; |
| 287 | } | 287 | } |
| 288 | 288 | ||
| 289 | button.clear-input{ | 289 | button.clear-input{ |
| 290 | cursor: pointer; | 290 | cursor: pointer; |
| 291 | background: transparent; | 291 | background: transparent; |
| 292 | border: none; | 292 | border: none; |
| 293 | margin-left: -24px; | 293 | margin-left: -24px; |
| 294 | z-index: 9; | 294 | z-index: 9; |
| 295 | color: #a3a3a3; | 295 | color: #a3a3a3; |
| 296 | &:focus{ | 296 | &:focus{ |
| 297 | outline: none; | 297 | outline: none; |
| 298 | } | 298 | } |
| 299 | } | 299 | } |
| 300 | .custom-control-input { | 300 | .custom-control-input { |
| 301 | &:checked ~ .custom-control-label::before { | 301 | &:checked ~ .custom-control-label::before { |
| 302 | border: none !important; | 302 | border: none !important; |
| 303 | color: $primary !important; | 303 | color: $primary !important; |
| 304 | background-color: $primary !important; | 304 | background-color: $primary !important; |
| 305 | box-shadow: 0px 0px 0px 2px $primaryTransparency !important; | 305 | box-shadow: 0px 0px 0px 2px $primaryTransparency !important; |
| 306 | } | 306 | } |
| 307 | &:active ~ .custom-control-label::before { | 307 | &:active ~ .custom-control-label::before { |
| 308 | border: none !important; | 308 | border: none !important; |
| 309 | color: $primary !important; | 309 | color: $primary !important; |
| 310 | background-color: $primary !important; | 310 | background-color: $primary !important; |
| 311 | } | 311 | } |
| 312 | &:focus ~ .custom-control-label::before { | 312 | &:focus ~ .custom-control-label::before { |
| 313 | border: none !important; | 313 | border: none !important; |
| 314 | box-shadow: 0px 0px 0px 2px $primaryTransparency !important; | 314 | box-shadow: 0px 0px 0px 2px $primaryTransparency !important; |
| 315 | } | 315 | } |
| 316 | &:focus:not(:checked) ~ .custom-control-label::before { | 316 | &:focus:not(:checked) ~ .custom-control-label::before { |
| 317 | border: none !important; | 317 | border: none !important; |
| 318 | } | 318 | } |
| 319 | &:not(:disabled):active ~ .custom-control-label::before { | 319 | &:not(:disabled):active ~ .custom-control-label::before { |
| 320 | border: none !important; | 320 | border: none !important; |
| 321 | color: $primary !important; | 321 | color: $primary !important; |
| 322 | box-shadow: 0px 0px 0px 2px $primaryTransparency !important; | 322 | box-shadow: 0px 0px 0px 2px $primaryTransparency !important; |
| 323 | } | 323 | } |
| 324 | &:hover ~ .custom-control-label::before { | 324 | &:hover ~ .custom-control-label::before { |
| 325 | border: none !important; | 325 | border: none !important; |
| 326 | background-color: $primaryTransparency; | 326 | background-color: $primaryTransparency; |
| 327 | } | 327 | } |
| 328 | } | 328 | } |
| 329 | .disable-selection { | 329 | .disable-selection { |
| 330 | user-select: none; | 330 | user-select: none; |
| 331 | -moz-user-select: none; /* Firefox */ | 331 | -moz-user-select: none; /* Firefox */ |
| 332 | -ms-user-select: none; /* Internet Explorer */ | 332 | -ms-user-select: none; /* Internet Explorer */ |
| 333 | -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */ | 333 | -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */ |
| 334 | -webkit-user-select: none; /* Chrome, Safari, and Opera */ | 334 | -webkit-user-select: none; /* Chrome, Safari, and Opera */ |
| 335 | -webkit-touch-callout: none; /* Disable Android and iOS callouts*/ | 335 | -webkit-touch-callout: none; /* Disable Android and iOS callouts*/ |
| 336 | } | 336 | } |
| 337 | 337 |