jasonbrooks / centos / centos.org

Forked from centos/centos.org 4 years ago
Clone

Blame assets/csvtable-look.css

545090
/* this is for the mirror list table */
545090
545090
#CSVTable td, #CSVTable th {
545090
  padding: 0.5em;
545090
}
545090
545090
#CSVTable th.header:first-child {
545090
  border-radius: 7px 0 0 0;
545090
}
545090
#CSVTable th.header:last-child {
545090
  border-radius: 0 7px 0 0;
545090
}
545090
545090
#CSVTable th.header {
545090
  background: rgba(0,0,0,0.6);
545090
  color: #aaaaaa;
545090
}
545090
#CSVTable tr.even td {
545090
  background-color: rgba(0,0,0, 0.15);
545090
}
545090
545090
#CSVTable th.header.headerSortUp, #CSVTable th.header.headerSortDown {
545090
  color: #ffffff;
545090
}
545090
545090
/* this inline utf-8 might be a bit weird, but ▾ notation doesnt work */
545090
th.headerSortUp:after {
545090
    content: " ▴";
545090
}
545090
th.headerSortDown:after {
545090
    content: " ▾";
545090
}
545090
545090