Ignore:
Timestamp:
02/25/14 14:40:50 (10 years ago)
Author:
andmor
Message:

Edit panels for: name, description, access, version, status and license.
Some layout changes to match bootstrap 3.1.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cats/SCHEMAcat/trunk/urn.org.isocat.schemacat.site/site/styles/SCHEMAcat.css

    r4476 r4567  
    55}
    66
    7 body {
    8     overflow-y: scroll;
    9 }
    10 
    11 .centered{
    12     text-align:center;
     7.modal {
     8    overflow-y: auto;
     9}
     10
     11body.modal-open {
     12    overflow: auto;
    1313}
    1414
     
    1717#about, #contact, #accountDetails{
    1818    -webkit-animation-duration: 0.25s;
    19     -moz-animation-duration: 0.25s;
    20     -o-animation-duration: 0.25s;
    21     animation-duration: 0.25s;
     19       -moz-animation-duration: 0.25s;
     20         -o-animation-duration: 0.25s;
     21            animation-duration: 0.25s;
    2222}
    2323
    2424#schema-background {
    2525    min-height: 350px;
     26    padding-top: 10px;
    2627}
    2728
     
    3334    border-color: #e9322d;
    3435    -webkit-box-shadow: 0 0 6px #f8b9b7;
    35     -moz-box-shadow: 0 0 6px #f8b9b7;
    36     box-shadow: 0 0 6px #f8b9b7;
     36       -moz-box-shadow: 0 0 6px #f8b9b7;
     37         -o-box-shadow: 0 0 6px #f8b9b7;
     38            box-shadow: 0 0 6px #f8b9b7;
    3739}
    3840
     
    4345.cursor-default{
    4446    cursor:default;
     47}
     48
     49.pre-wrap {
     50    white-space:pre-wrap;
    4551}
    4652
     
    6369}
    6470
     71.inline{
     72    display: inline;
     73}
     74
    6575.word-breaking-wraper{
    6676    word-wrap: break-word;
    67 }
    68 
    69 #access-actions .tooltip-inner {
    70     max-width: 350px;
    7177}
    7278
     
    7985}
    8086/*override bootstrap.css '<pre><code>' tag sequence not to use transparent
    81   background (removes lag in google Chrome) and not to wrap text on white spaces.*/
     87  background and not to wrap text on white spaces.*/
    8288pre code {
    8389    background-color: inherit;
     
    127133}
    128134
    129 #schema-div h1,
    130 #contact-div h1 {
    131     line-height: 1;
    132 }
    133 
    134135#schema-div p,
    135136#contact-div p {
     
    140141}
    141142
     143#account-details-list {
     144    margin-top: 25px;
     145    font-size: 18px;
     146    font-weight: 200;
     147}
     148
     149#account-details-list dt,
     150#account-details-list dd {
     151    margin-bottom: 5px;
     152}
     153
     154#license-description {
     155    padding-top: 65px;
     156}
     157
     158#license-select {
     159    max-height: 350px;
     160}
     161
     162/*magnifier icon inside filter box*/
     163.right-inner-addon {
     164    position: relative;
     165    width: 70%;
     166}
     167.right-inner-addon input {
     168    font-size: 85%;
     169    height: 25px;
     170    padding: 0px 30px 0px 12px;
     171    -webkit-border-radius: 20px;
     172       -moz-border-radius: 20px;
     173         -o-border-radius: 20px;
     174            border-radius: 20px;
     175}
     176.right-inner-addon i {
     177    font-size: 85%;
     178    position: absolute;
     179    right: 0px;
     180    padding: 5px 12px;
     181    pointer-events: none;
     182}
     183
     184/*different glow colour for interface icons*/
     185a.glow{
     186    -webkit-text-shadow: 0px 0px 20px #00FFFF;
     187       -moz-text-shadow: 0px 0px 20px #00FFFF;
     188         -o-text-shadow: 0px 0px 20px #00FFFF;
     189            text-shadow: 0px 0px 20px #00FFFF;     
     190}
     191a.glow-warn{
     192    color: #CFAF00;
     193    -webkit-text-shadow: 0px 0px 20px #CFAF00;
     194       -moz-text-shadow: 0px 0px 20px #CFAF00;
     195         -0-text-shadow: 0px 0px 20px #CFAF00;
     196            text-shadow: 0px 0px 20px #CFAF00;
     197}
     198
     199.capitalize {
     200    text-transform: capitalize;
     201}
     202
     203.no-bottom-margin {
     204    margin-bottom: 0px;
     205}
     206
    142207.help-block {
    143208    line-height: 1.428571429;
    144209}
    145210
     211textarea.vertical {
     212    resize: vertical;
     213    max-width: 100%;
     214    overflow: hidden;
     215    vertical-align: top;
     216}
     217
    146218#fill-details-modal-error.help-block {
    147219    padding-top: 7px;
    148220}
    149221
    150 
    151 /* FIX FOR BOOTSTRAP 3.1.0 BUG #12447. (From #12489 commit) */
    152 /* 1. override the wrong selectors to create a border */
    153 .panel > .table-bordered > tbody > tr:first-child > td {
    154   border-top: 1px solid #ddd;
    155 }
    156 
    157 .panel > .table-bordered > thead > tr:last-child > th {
    158   border-bottom: 1px solid #ddd;
    159 }
    160 /* 2. declare new fixed selectors */
    161 .panel > .table-bordered > tbody:first-child > tr:first-child > td {
    162   border-top: 0;
    163 }
    164 
    165 .panel > .table-bordered > thead:last-child > tr:last-child > th {
    166   border-bottom: 0;
    167 }
    168 /* END OF FIX FOR BOOTSTRAP 3.1.0 BUG #12447 */
    169 
    170 .modal {
    171     overflow-y: auto;
    172 }
    173 
    174 body.modal-open {
    175     overflow: scroll;
     222#description-spinner {
     223    line-height: 2.8;
    176224}
    177225
Note: See TracChangeset for help on using the changeset viewer.