| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- /**
- * Smoke is the most complete jQuery Plugin and designed for use with Bootstrap 3. *
- * @package Smoke
- * @version 2.0
- * @link https://github.com/alfredobarron/smoke The Smoke GitHub project
- * @author Alfredo Barron <alfredobarronc@gmail.com>
- * @copyright 2015 Alfredo Barron
- * @license https://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
- * @note This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- */
- /*
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- | Validate
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- */
- .has-feedback .smk-error-text{
- position: absolute;
- right: 0;
- font-size: 12px;
- color: #EE4124;
- /*float: right;*/
- }
- .smk-select .smk-error-icon{
- right: 10px;
- }
- .smk-checkbox .smk-error-text,
- .smk-radio .smk-error-text{
- margin-top: -12px;
- }
- /* form-horizontal */
- .form-horizontal .has-feedback .smk-error-text {
- right: 15px;
- }
- .form-horizontal .smk-select .smk-error-icon{
- right: 25px;
- }
- .form-horizontal .smk-checkbox .smk-error-text,
- .form-horizontal .smk-radio .smk-error-text{
- margin-top: 0;
- }
- /*
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- | Alerts
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- */
- .smk-alert-content{
- position: fixed;
- width: 360px;
- top: 0;
- right: 20px;
- z-index: 2060;
- }
- .smk-alert {
- opacity: 0;
- filter: alpha(opacity=0);
- }
- .smk-alert .glyphicon {
- font-size: 20px;
- float: left;
- margin-right: 14px;
- }
- .smk-alert p{
- display: table;
- }
- /*
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- | Confirmation
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- */
- .smk-confirm-back {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1030;
- }
- .smk-confirm {
- position: absolute;
- opacity: 0;
- filter: alpha(opacity=0);
- top: -500px;
- right: 0;
- left: 0;
- margin: auto;
- max-width: 440px;
- z-index: 2060;
- box-shadow: 0 5px 25px -1px #333;
- -webkit-box-shadow: 0 5px 25px -1px #333; /* Chrome & Safari */
- -moz-box-shadow: 0 5px 25px -1px #333; /* Firefox */
- }
- /*
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- | Progress
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- */
- .smk-progressbar{
- /*position: fixed;*/
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- background: rgba(255,255,255,0.4);
- z-index: 10000;
- }
- .smk-progressbar .progress {
- width: 100%;
- height: 4px;
- background-color: transparent;
- border-radius: 0;
- margin-bottom: 0;
- }
- .smk-progressbar .progress-bar{
- background: #28A8E0;
- }
- /*.progress-bar{
- -webkit-animation: myfirst 1s;
- animation: myfirst 1s;
- }
- @-webkit-keyframes myfirst {
- from {width: 0;}
- to {width: 95%;}
- }
- @keyframes myfirst {
- from {width: 0;}
- to {width: 95%;}
- }*/
- /*
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- | Panel
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- */
- .panel-full{
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 2050;
- }
- .smk-btn-group-panel-title{
- top:-22px;
- right: -4px
- }
- .smk-btn-group-panel{
- top:-4px;
- right: -4px
- }
- /*
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- | Helper Styles
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- */
- /*
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- | Elimina los spin del input number
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- */
- input[type=number]::-webkit-inner-spin-button,
- input[type=number]::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- /*
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- | Al agregar padding a un div evita que su tamaño crezca
- |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- */
- .smk-sizing{
- box-sizing: border-box;
- }
- /* Transition */
- .smk-transition1 {
- transition: all .2s ease-in-out;
- -webkit-transition: all .2s ease-in-out; /* Chrome & Safari */
- -moz-transition: all .2s ease-in-out; /* Firefox */
- -o-transition: all .2s ease-in-out; /* Opera */
- -ms-transition: all .2s ease-in-out; /* IE 9 */
- }
- .smk-transition2 {
- transition: all .5s ease-in-out;
- -webkit-transition: all .5s ease-in-out; /* Chrome & Safari */
- -moz-transition: all .5s ease-in-out; /* Firefox */
- -o-transition: all .5s ease-in-out; /* Opera */
- -ms-transition: all .5s ease-in-out; /* IE 9 */
- }
- /* Shadow */
- .smk-shadow {
- box-shadow: 3px 3px 5px 6px #ccc;
- -webkit-box-shadow: 3px 3px 5px 6px #ccc; /* Chrome & Safari */
- -moz-box-shadow: 3px 3px 5px 6px #ccc; /* Firefox */
- }
- /* Animations */
- .smk-animation {
- animation: fadeOut 3.5s;
- -webkit-animation: fadeOut 3.5s; /* Chrome & Safari */
- -moz-animation: fadeOut 3.5s; /* Firefox */
- -o-animation: fadeOut 3.5s; /* Opera */
- -ms-animation: fadeOut 3.5s; /* IE 9 */
- }
- /* Translate */
- .smk-translate {
- transform: translate(50px,100px);
- -webkit-transform: translate(50px,100px); /* Chrome & Safari */
- -moz-transform: translate(50px,100px); /* Firefox */
- -o-transform: translate(50px,100px); /* Opera */
- -ms-transform: translate(50px,100px); /* IE 9 */
- }
- /* Rotate */
- .smk-rotate {
- transform: rotate(7deg);
- -webkit-transform: rotate(7deg); /* Chrome & Safari */
- -moz-transition: rotate(7deg); /* Firefox */
- -o-transition: rotate(7deg); /* Opera */
- -ms-transform: rotate(7deg); /* IE 9 */
- }
|