Subversion Repositories wimsdev

Rev

Rev 14863 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /* WIMS Quota bar */
  2. /* used by Class quota (quotafree.proc) for sample */
  3.  
  4. .wims_quotafree{
  5.   max-width:800px;
  6.   margin:auto;
  7. }
  8.  
  9. .quota-bar {
  10.   display:flex;
  11.   min-height: 1rem;
  12.   margin-bottom: .8rem;
  13.   border-radius: 0;
  14.   background-color: #cacaca;
  15. }
  16.  
  17. .quota-index {
  18.   cursor: help;
  19.   background-color: #1779ba;
  20.   font-size: .75rem;
  21.   font-weight: bold;
  22.   color: #fefefe;
  23.   white-space: nowrap;
  24.   text-align: center;
  25. }
  26. .quota-index:first-child {
  27.   min-width:2px;
  28. }
  29.  
  30. .quota-index.blank {
  31.   background-color: transparent;
  32.   flex-grow: 1;
  33. }
  34. .quota-index.primary {
  35.   background-color: #1779ba; }
  36. .quota-index.secondary {
  37.   background-color: #767676; }
  38. .quota-index.success {
  39.   background-color: #3adb76; }
  40. .quota-index.warning {
  41.   background-color: #ffae00; }
  42. .quota-index.alert {
  43.   background-color: #cc4b37; }
  44.  
  45. .quota-legend{
  46.   padding-left:2px;
  47.   border-left-width: .8em;
  48.   border-left-style: solid;
  49.   border-color: #cacaca;
  50. }
  51.  
  52. .quota-legend.primary {
  53.   border-color: #1779ba; }
  54. .quota-legend.secondary {
  55.   border-color: #767676; }
  56. .quota-legend.success {
  57.   border-color: #3adb76; }
  58. .quota-legend.warning {
  59.   border-color: #ffae00; }
  60. .quota-legend.alert {
  61.   border-color: #cc4b37; }
  62.  
  63.