blob: 3df52b707612c2bd01201ad774a4541aa283548d [file] [log] [blame]
Nils Diewalda944fab2015-04-08 21:02:04 +00001@charset "utf-8";
Akron7636edf2025-11-04 12:44:53 +01002@use "../util";
3@use "view/matchtable";
4@use "view/matchtree";
5@use "view/metatable";
6@use "../base/colors";
7@use "../base/lengths";
Nils Diewalda944fab2015-04-08 21:02:04 +00008
Nils Diewalda944fab2015-04-08 21:02:04 +00009
Nils Diewalda944fab2015-04-08 21:02:04 +000010/**
Akron7e5afce2020-08-25 15:50:19 +020011 * General matchinfo styles.
Nils Diewalda944fab2015-04-08 21:02:04 +000012 */
Nils Diewalda944fab2015-04-08 21:02:04 +000013
Akron7e5afce2020-08-25 15:50:19 +020014// TODO: This should be moved to panel/match
Akroneaba63e2018-01-26 19:49:30 +010015
Nils Diewalda944fab2015-04-08 21:02:04 +000016div.matchinfo {
Akron7e5afce2020-08-25 15:50:19 +020017 position: relative;
18 width: 100%;
Akron7636edf2025-11-04 12:44:53 +010019 padding-top: lengths.$border-size;
Akron7e5afce2020-08-25 15:50:19 +020020 height: auto;
21 font-size: 10pt;
22 text-align: left;
Akron49f88cc2018-09-11 11:06:19 +020023
Akron7e5afce2020-08-25 15:50:19 +020024 &:empty {
25 display: none !important;
Nils Diewalda944fab2015-04-08 21:02:04 +000026 }
Akronfbf3a782017-06-28 17:34:28 +020027
Akron7e5afce2020-08-25 15:50:19 +020028 .view + .view {
Akron7636edf2025-11-04 12:44:53 +010029 margin-top: 4 * lengths.$border-size !important;
Nils Diewalda944fab2015-04-08 21:02:04 +000030 }
31}
32
Akronbd342982018-01-25 18:01:46 +010033
Akron7e5afce2020-08-25 15:50:19 +020034div.metatable,
35div.matchtable,
Akron257aa852018-02-06 19:29:51 +010036div.matchtree {
Akron7e5afce2020-08-25 15:50:19 +020037 position: relative;
Akron7636edf2025-11-04 12:44:53 +010038 background-color: colors.$dark-orange;
Akron41387d22018-02-02 18:10:06 +010039}
Nils Diewalda944fab2015-04-08 21:02:04 +000040
Akronbfe912c2018-07-17 19:30:52 +020041div.button-group.button-panel.button-matchinfo {
Akron7e5afce2020-08-25 15:50:19 +020042 display: inline-block;
Akronbfe912c2018-07-17 19:30:52 +020043 margin-right: .5em;
Akron7e5afce2020-08-25 15:50:19 +020044
Akronbfe912c2018-07-17 19:30:52 +020045 > span {
Akron7e5afce2020-08-25 15:50:19 +020046 position: relative;
Akronbfe912c2018-07-17 19:30:52 +020047 box-shadow: none;
Nils Diewalda944fab2015-04-08 21:02:04 +000048 }
49}