bcotton / centos / centos.org

Forked from centos/centos.org 4 years ago
Clone

Blame static/assets/csvtable-look.css

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