2015-12-20 00:00:01 +00:00
|
|
|
.textbox-highlight {
|
|
|
|
|
|
2016-03-30 11:39:16 +01:00
|
|
|
$tag-background: rgba($light-blue, 0.6);
|
2016-02-08 11:11:55 +00:00
|
|
|
|
2015-12-20 00:00:01 +00:00
|
|
|
&-wrapper {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-textbox {
|
|
|
|
|
resize: none;
|
|
|
|
|
z-index: 20;
|
|
|
|
|
background: none;
|
2016-03-18 08:52:29 +00:00
|
|
|
height: 200px;
|
2015-12-20 00:00:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-textbox,
|
|
|
|
|
&-background,
|
|
|
|
|
&-foreground,
|
|
|
|
|
&-mask {
|
|
|
|
|
@include core-19;
|
|
|
|
|
display: block;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-background,
|
|
|
|
|
&-foreground,
|
|
|
|
|
&-mask {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
color: transparent;
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
border: 2px solid transparent;
|
2016-03-18 08:52:29 +00:00
|
|
|
padding-bottom: $gutter;
|
2015-12-20 00:00:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-background {
|
|
|
|
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
|
background: $light-blue;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: transparent;
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-mask {
|
|
|
|
|
|
|
|
|
|
z-index: 30;
|
|
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
|
color: $white;
|
|
|
|
|
text-shadow: 0 1px 0 $light-blue, 0 -1px 0 $light-blue;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-foreground {
|
|
|
|
|
|
|
|
|
|
z-index: 40;
|
|
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
|
color: transparent;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: inline;
|
2016-02-08 11:11:55 +00:00
|
|
|
box-shadow: inset 0.75em 0 0 0 $tag-background, inset -0.75em 0 0 0 $tag-background;
|
2015-12-20 00:00:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2016-02-02 15:12:59 +00:00
|
|
|
|
|
|
|
|
.textbox-help-link {
|
|
|
|
|
margin: 5px 0 0 0;
|
|
|
|
|
}
|
2016-02-18 14:54:59 +00:00
|
|
|
|
|
|
|
|
.textbox-right-aligned {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|