47 lines
719 B
Stylus
47 lines
719 B
Stylus
@import "{design}/app.styl"
|
|
|
|
.ruleEntryDialog
|
|
display: none
|
|
position: absolute
|
|
top: 0
|
|
bottom: 0
|
|
left: 0
|
|
right: 0
|
|
z-index: 100
|
|
width: 350px
|
|
height: 230px
|
|
margin: auto
|
|
padding: 10px
|
|
background-color: rgba(255,255,255,1)
|
|
outline: none
|
|
|
|
opacity: 0.95
|
|
border-radius: 8px
|
|
border: 1px solid $uiBorderColor
|
|
background: $uiGrayDarkest
|
|
color: $textSecondaryColor
|
|
|
|
.dialogContent
|
|
text-align: center
|
|
margin-bottom: 10px
|
|
|
|
.row
|
|
margin: 15px 0
|
|
|
|
.btn
|
|
text-decoration: none
|
|
|
|
#cancel
|
|
float: left
|
|
|
|
#save
|
|
float: right
|
|
|
|
input.currentValue
|
|
width: 95%
|
|
text-align: center
|
|
padding: 4px
|
|
color: black
|
|
height: 30px
|
|
border-radius: 2px
|
|
border: 0 |