github.com/zppinho/prow@v0.0.0-20240510014325-1738badeb017/cmd/deck/static/spyglass/lens.css (about) 1 /* 2 * Ensure we don't accidentally scroll on this frame. 3 */ 4 html { 5 overflow-y: hidden; 6 } 7 /* 8 * MDL sets min-height: 100% for the body, which prevents us from ever shrinking. 9 * In order to prevent this, we unset it again, using a higher-priority selector. 10 */ 11 body.lens-body { 12 min-height: unset; 13 font-size: 14px; 14 } 15 16 17 /* 18 * Dark mode + table tweaks 19 */ 20 table.mdl-data-table { 21 height: unset; 22 padding: 0; 23 margin: 0; 24 border: 0; 25 width: 100%; 26 font-size: inherit; 27 } 28 29 .mdl-data-table { 30 background-color: unset; 31 border-collapse: collapse; 32 } 33 34 .mdl-data-table tbody tr:hover { 35 background-color: #666 !important; 36 } 37 38 .hidden { 39 visibility: collapse; 40 } 41 42 .mdl-data-table td { 43 color: #e8e8e8; 44 border-width: 1px; 45 } 46 47 .expander { 48 cursor: pointer; 49 user-select: none; 50 background-color: #505050; 51 } 52 53 .expander .icon-button { 54 vertical-align: middle; 55 } 56 57 a:link { 58 color: #ff8caa; 59 } 60 61 a:visited { 62 color: #ff8caa; 63 }