src/pyams_default_theme/resources/css/pyams-default.css
changeset 293 b2f7d60562ba
parent 288 c140b4b0d918
child 317 46c78cc30b74
equal deleted inserted replaced
292:1d2d4bb25fbc 293:b2f7d60562ba
   308  * Source code
   308  * Source code
   309  */
   309  */
   310 .source pre {
   310 .source pre {
   311   font-family: 'Source Code Pro', monospace;
   311   font-family: 'Source Code Pro', monospace;
   312 }
   312 }
       
   313 /**
       
   314  * Modal dialogs
       
   315  */
       
   316 .modal-backdrop,
       
   317 .modal-backdrop.fade.in {
       
   318   position: fixed;
       
   319   width: 100%;
       
   320   height: 100%;
       
   321   z-index: 990;
       
   322 }
       
   323 .modal-dialog.modal-max {
       
   324   width: 98%;
       
   325   max-width: 98%;
       
   326 }
       
   327 @media only screen and (min-width: 768px) {
       
   328   .modal-dialog.modal-xlarge {
       
   329     width: 95%;
       
   330     max-width: 1000px;
       
   331   }
       
   332 }
       
   333 @media only screen and (min-width: 768px) {
       
   334   .modal-dialog.modal-large {
       
   335     width: 80%;
       
   336     max-width: 900px;
       
   337   }
       
   338 }
       
   339 @media only screen and (min-width: 768px) {
       
   340   .modal-dialog.modal-medium {
       
   341     width: 60%;
       
   342     max-width: 650px;
       
   343   }
       
   344 }
       
   345 @media only screen and (min-width: 768px) {
       
   346   .modal-dialog.modal-small {
       
   347     width: 40%;
       
   348     max-width: 450px;
       
   349   }
       
   350 }
       
   351 .modal-dialog .modal-body .modal-viewport {
       
   352   min-height: 140px;
       
   353 }
       
   354 .modal-dialog .close:hover {
       
   355   background-color: white;
       
   356 }
       
   357 .modal-dialog .suffix .alert {
       
   358   margin-bottom: 0;
       
   359 }
       
   360 .modal-dialog .suffix .alert:last-child {
       
   361   border-radius: 0 0 5px 5px;
       
   362 }
       
   363 .modal-header {
       
   364   position: relative;
       
   365   cursor: move;
       
   366 }
       
   367 .modal-header .toolbar {
       
   368   position: absolute;
       
   369   right: 25px;
       
   370   bottom: -19px;
       
   371   z-index: 1;
       
   372 }
       
   373 .modal-title {
       
   374   min-height: 1.1em;
       
   375 }
       
   376 .modal-title img {
       
   377   margin: 0 15px 0 0;
       
   378 }
       
   379 .modal-overflow {
       
   380   position: relative;
       
   381   height: 98%;
       
   382 }
       
   383 .modal-overflow .modal-body {
       
   384   overflow: hidden;
       
   385 }
       
   386 .modal-overflow .scrollmarker {
       
   387   position: absolute;
       
   388   width: 100%;
       
   389   height: 20px;
       
   390 }
       
   391 .modal-overflow .scrollmarker.top {
       
   392   background: -moz-linear-gradient(top, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   393   /* FF3.6+ */
       
   394   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3276b1), color-stop(17%, rgba(50, 118, 177, 0.83)), color-stop(100%, rgba(50, 118, 177, 0)));
       
   395   /* Chrome,Safari4+ */
       
   396   background: -webkit-linear-gradient(top, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   397   /* Chrome10+,Safari5.1+ */
       
   398   background: -o-linear-gradient(top, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   399   /* Opera 11.10+ */
       
   400   background: -ms-linear-gradient(top, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   401   /* IE10+ */
       
   402   background: linear-gradient(to bottom, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   403   /* W3C */
       
   404 }
       
   405 .modal-overflow .scrollmarker.bottom {
       
   406   background: -moz-linear-gradient(bottom, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   407   /* FF3.6+ */
       
   408   background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #3276b1), color-stop(17%, rgba(50, 118, 177, 0.83)), color-stop(100%, rgba(50, 118, 177, 0)));
       
   409   /* Chrome,Safari4+ */
       
   410   background: -webkit-linear-gradient(bottom, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   411   /* Chrome10+,Safari5.1+ */
       
   412   background: -o-linear-gradient(bottom, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   413   /* Opera 11.10+ */
       
   414   background: -ms-linear-gradient(bottom, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   415   /* IE10+ */
       
   416   background: linear-gradient(to top, #3276b1 0%, rgba(50, 118, 177, 0.83) 17%, rgba(50, 118, 177, 0) 100%);
       
   417   /* W3C */
       
   418 }
       
   419 .modal-viewport {
       
   420   overflow-x: hidden;
       
   421   overflow-y: auto;
       
   422 }
       
   423 .modal-viewport fieldset .alert {
       
   424   margin: 0 -5px 5px !important;
       
   425 }
   313 /*# sourceMappingURL=pyams-default.css.map */
   426 /*# sourceMappingURL=pyams-default.css.map */