blob: c5122f22187df90ec313d507669cd0717f1f0d23 [file] [log] [blame]
Simon Hunta2b11a52016-02-22 22:05:47 -08001/* css for driver matrix view */
Thomas Vachuskabbf10502015-12-09 13:41:58 -08002
3#ov-driver-matrix h2 {
4 display: inline-block;
5}
6
Simon Hunt59f598c2016-03-04 15:15:13 -08007#ov-driver-matrix .driver-matrix {
Simon Huntc23145b2016-03-08 23:57:56 -08008 background-color: white;
Simon Hunt59f598c2016-03-04 15:15:13 -08009}
10
Simon Hunta2b11a52016-02-22 22:05:47 -080011#ov-driver-matrix table {
12 margin-left: 20px;
13}
14
Simon Huntc23145b2016-03-08 23:57:56 -080015#ov-driver-matrix .table-header-rotated table {
Simon Hunta2b11a52016-02-22 22:05:47 -080016 border-collapse: collapse;
17}
18#ov-driver-matrix .table-header-rotated td {
Simon Hunt59f598c2016-03-04 15:15:13 -080019 width: 24px;
Simon Hunta2b11a52016-02-22 22:05:47 -080020}
Simon Hunta2b11a52016-02-22 22:05:47 -080021#ov-driver-matrix .table-header-rotated th.rotate {
22 height: 140px;
23 white-space: nowrap;
Simon Hunt59f598c2016-03-04 15:15:13 -080024 font-size: 10pt;
Simon Hunta2b11a52016-02-22 22:05:47 -080025}
26#ov-driver-matrix .table-header-rotated th.rotate > div {
27 -webkit-transform: translate(25px, 51px) rotate(-45deg);
28 transform: translate(25px, 51px) rotate(-45deg);
Simon Huntc23145b2016-03-08 23:57:56 -080029 width: 33px;
Simon Hunta2b11a52016-02-22 22:05:47 -080030}
31#ov-driver-matrix .table-header-rotated th.rotate > div > span {
32 border-bottom: 1px solid #ccc;
33 padding: 5px 10px;
Simon Huntc23145b2016-03-08 23:57:56 -080034 background-color: rgb(249, 225, 193);
Simon Hunta2b11a52016-02-22 22:05:47 -080035}
Simon Huntc23145b2016-03-08 23:57:56 -080036
37#ov-driver-matrix .table-grid {
38 overflow: scroll;
39 color: white;
40}
41#ov-driver-matrix .table-grid table {
42 border-collapse: collapse;
43}
44#ov-driver-matrix .table-grid th.row-header {
Simon Hunta2b11a52016-02-22 22:05:47 -080045 padding: 0 10px;
46 border-bottom: 1px solid #ccc;
47 text-align: right;
Simon Huntc23145b2016-03-08 23:57:56 -080048 color: black;
49 font-size: 10pt;
50 background-color: rgb(249, 225, 193);
51}
52#ov-driver-matrix .table-grid td {
53 width: 24px;
54}
55#ov-driver-matrix .table-grid td.xmark {
56 background-color: rgb(249, 225, 193);
57 color: rgb(88,70,14);
58}
59#ov-driver-matrix .table-grid td {
60 text-align: center;
61 padding: 2px 5px;
62 border: 1px solid #ccc;
Simon Hunta2b11a52016-02-22 22:05:47 -080063}
64
Simon Huntc23145b2016-03-08 23:57:56 -080065/* === NOT YET IMPLEMENTED === */
Thomas Vachuskabbf10502015-12-09 13:41:58 -080066/* Panel Styling */
67#ov-driver-matrix-item-details-panel.floatpanel {
68 position: absolute;
69 top: 115px;
70}
71
72.light #ov-driver-matrix-item-details-panel.floatpanel {
73 background-color: rgb(229, 234, 237);
74}
75.dark #ov-driver-matrix-item-details-panel.floatpanel {
76 background-color: #3A4042;
77}
78
79#ov-driver-matrix-item-details-panel h3 {
80 margin: 0;
81 font-size: large;
82}
83
84#ov-driver-matrix-item-details-panel h4 {
85 margin: 0;
86}
87
88#ov-driver-matrix-item-details-panel td {
89 padding: 5px;
90}
91#ov-driver-matrix-item-details-panel td.label {
92 font-style: italic;
93 opacity: 0.8;
94}
Simon Hunta2b11a52016-02-22 22:05:47 -080095