cms/drupal/modules/update/update.css
changeset 541 e756a8c72c3d
equal deleted inserted replaced
540:07239de796bb 541:e756a8c72c3d
       
     1 /**
       
     2  * @file
       
     3  * Styles used by the Update Manager module.
       
     4  */
       
     5 
       
     6 .update .project {
       
     7   font-weight: bold;
       
     8   font-size: 110%;
       
     9   padding-left: .25em; /* LTR */
       
    10   height: 22px;
       
    11 }
       
    12 
       
    13 .update .version-status {
       
    14   float: right; /* LTR */
       
    15   padding-right: 10px; /* LTR */
       
    16   font-size: 110%;
       
    17   height: 20px;
       
    18 }
       
    19 
       
    20 .update .version-status .icon {
       
    21   padding-left: .5em; /* LTR */
       
    22 }
       
    23 
       
    24 .update .version-date {
       
    25   white-space: nowrap;
       
    26 }
       
    27 
       
    28 .update .info {
       
    29   margin: 0;
       
    30   padding: 1em 1em .25em 1em;
       
    31 }
       
    32 
       
    33 .update tr.even,
       
    34 .update tr.odd {
       
    35   border: none;
       
    36 }
       
    37 
       
    38 .update tr td {
       
    39   border-top: 1px solid #ccc;
       
    40   border-bottom: 1px solid #ccc;
       
    41 }
       
    42 
       
    43 .update tr.error {
       
    44   background: #fcc;
       
    45 }
       
    46 
       
    47 .update tr.error .version-recommended {
       
    48   background: #fdd;
       
    49 }
       
    50 
       
    51 .update tr.ok {
       
    52   background: #dfd;
       
    53 }
       
    54 
       
    55 .update tr.warning {
       
    56   background: #ffd;
       
    57 }
       
    58 
       
    59 .update tr.warning .version-recommended {
       
    60   background: #ffe;
       
    61 }
       
    62 
       
    63 .current-version,
       
    64 .new-version {
       
    65   direction: ltr; /* Note: version numbers should always be LTR. */
       
    66 }
       
    67 
       
    68 .update tr.unknown {
       
    69   background: #ddd;
       
    70 }
       
    71 
       
    72 table.update,
       
    73 .update table.version {
       
    74   width: 100%;
       
    75   margin-top: .5em;
       
    76   border: none;
       
    77 }
       
    78 
       
    79 .update table.version tbody {
       
    80   border: none;
       
    81 }
       
    82 
       
    83 .update table.version tr,
       
    84 .update table.version td {
       
    85   line-height: .9em;
       
    86   padding: 0;
       
    87   margin: 0;
       
    88   border: none;
       
    89   background: none;
       
    90 }
       
    91 
       
    92 .update table.version .version-title {
       
    93   padding-left: 1em; /* LTR */
       
    94   width: 14em;
       
    95 }
       
    96 
       
    97 .update table.version .version-details {
       
    98   padding-right: .5em; /* LTR */
       
    99 }
       
   100 
       
   101 .update table.version .version-links {
       
   102   text-align: right; /* LTR */
       
   103   padding-right: 1em; /* LTR */
       
   104 }
       
   105 
       
   106 .update table.version-security .version-title {
       
   107   color: #970F00;
       
   108 }
       
   109 
       
   110 .update table.version-recommended-strong .version-title {
       
   111   font-weight: bold;
       
   112 }
       
   113 
       
   114 .update .security-error {
       
   115   font-weight: bold;
       
   116   color: #970F00;
       
   117 }
       
   118 
       
   119 .update .check-manually {
       
   120   padding-left: 1em; /* LTR */
       
   121 }
       
   122 
       
   123 .update-major-version-warning {
       
   124   color: #ff0000;
       
   125 }
       
   126 
       
   127 table tbody tr.update-security,
       
   128 table tbody tr.update-unsupported {
       
   129   background: #fcc;
       
   130 }
       
   131 
       
   132 th.update-project-name {
       
   133   width: 50%;
       
   134 }
       
   135