blob: a0f98c4ee8854af965a69161bb8e0eaa6ed4d12c [file] [log] [blame]
Nils Diewalda944fab2015-04-08 21:02:04 +00001@charset "utf-8";
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00002@import "../util";
Akron7e5afce2020-08-25 15:50:19 +02003@import "view/matchtable";
4@import "view/matchtree";
5@import "view/metatable";
Nils Diewalda944fab2015-04-08 21:02:04 +00006
Nils Diewalda944fab2015-04-08 21:02:04 +00007
Nils Diewalda944fab2015-04-08 21:02:04 +00008/**
Akron7e5afce2020-08-25 15:50:19 +02009 * General matchinfo styles.
Nils Diewalda944fab2015-04-08 21:02:04 +000010 */
Nils Diewalda944fab2015-04-08 21:02:04 +000011
Akron7e5afce2020-08-25 15:50:19 +020012// TODO: This should be moved to panel/match
Akroneaba63e2018-01-26 19:49:30 +010013
Nils Diewalda944fab2015-04-08 21:02:04 +000014div.matchinfo {
Akron7e5afce2020-08-25 15:50:19 +020015 position: relative;
16 width: 100%;
Nils Diewalda944fab2015-04-08 21:02:04 +000017 padding-top: $border-size;
Akron7e5afce2020-08-25 15:50:19 +020018 height: auto;
19 font-size: 10pt;
20 text-align: left;
Akron49f88cc2018-09-11 11:06:19 +020021
Akron7e5afce2020-08-25 15:50:19 +020022 &:empty {
23 display: none !important;
Nils Diewalda944fab2015-04-08 21:02:04 +000024 }
Akronfbf3a782017-06-28 17:34:28 +020025
Akron7e5afce2020-08-25 15:50:19 +020026 .view + .view {
27 margin-top: 4 * $border-size !important;
Nils Diewalda944fab2015-04-08 21:02:04 +000028 }
29}
30
Akronbd342982018-01-25 18:01:46 +010031
Akron7e5afce2020-08-25 15:50:19 +020032div.metatable,
33div.matchtable,
Akron257aa852018-02-06 19:29:51 +010034div.matchtree {
Akron7e5afce2020-08-25 15:50:19 +020035 position: relative;
hebastaf95226b2019-09-19 11:37:00 +020036 background-color: $dark-orange;
Akron41387d22018-02-02 18:10:06 +010037}
Nils Diewalda944fab2015-04-08 21:02:04 +000038
Akronbfe912c2018-07-17 19:30:52 +020039div.button-group.button-panel.button-matchinfo {
Akron7e5afce2020-08-25 15:50:19 +020040 display: inline-block;
Akronbfe912c2018-07-17 19:30:52 +020041 margin-right: .5em;
Akron7e5afce2020-08-25 15:50:19 +020042
Akronbfe912c2018-07-17 19:30:52 +020043 > span {
Akron7e5afce2020-08-25 15:50:19 +020044 position: relative;
Akronbfe912c2018-07-17 19:30:52 +020045 box-shadow: none;
Nils Diewalda944fab2015-04-08 21:02:04 +000046 }
47}