2016-07-22 14:26:29 +02:00
|
|
|
@import "{design}/app.styl"
|
|
|
|
|
|
2016-05-07 08:58:46 +02:00
|
|
|
table.ruleTable
|
|
|
|
|
thead
|
|
|
|
|
tr
|
|
|
|
|
th
|
2016-08-23 19:24:51 +02:00
|
|
|
theme('color', '$defaultColor')
|
2016-05-07 08:58:46 +02:00
|
|
|
text-align: center
|
|
|
|
|
|
|
|
|
|
th:first-child
|
|
|
|
|
text-align: left
|
|
|
|
|
|
|
|
|
|
tbody
|
|
|
|
|
tr
|
|
|
|
|
td
|
2016-08-23 19:24:51 +02:00
|
|
|
theme('color', '$defaultColor')
|
2016-05-07 08:58:46 +02:00
|
|
|
text-align: center
|
|
|
|
|
|
|
|
|
|
.failWarning
|
|
|
|
|
color: red
|
|
|
|
|
|
|
|
|
|
.editRule
|
|
|
|
|
.deleteRule
|
|
|
|
|
&:hover, &:active
|
|
|
|
|
cursor: pointer
|
2016-07-22 14:26:29 +02:00
|
|
|
transition(all 0.1s ease)
|
|
|
|
|
|
|
|
|
|
&:hover
|
2016-08-23 19:24:51 +02:00
|
|
|
theme('color', '$hoverColor')
|
2016-07-22 14:26:29 +02:00
|
|
|
|
|
|
|
|
&:active
|
2016-08-23 19:24:51 +02:00
|
|
|
theme('color', '$activeColor')
|
2016-05-07 08:58:46 +02:00
|
|
|
|
|
|
|
|
td:first-child
|
|
|
|
|
text-align: left
|
|
|
|
|
|
|
|
|
|
.addRuleContainer
|
|
|
|
|
margin: 10px 0
|
|
|
|
|
text-align: center
|
2016-08-23 19:24:51 +02:00
|
|
|
theme('color', '$defaultColor')
|
2016-05-07 08:58:46 +02:00
|
|
|
|
|
|
|
|
.addRule
|
2016-07-22 14:26:29 +02:00
|
|
|
cursor: pointer
|
|
|
|
|
transition(all 0.1s ease)
|
|
|
|
|
|
|
|
|
|
&:hover
|
2016-08-23 19:24:51 +02:00
|
|
|
theme('color', '$hoverColor')
|
2016-07-22 14:26:29 +02:00
|
|
|
|
|
|
|
|
&:active
|
2016-08-23 19:24:51 +02:00
|
|
|
theme('color', '$activeColor')
|