summaryrefslogtreecommitdiffstats
path: root/deluge/ui/web/resources/themes/stylesheets/ext4/default/util/_focus.scss
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/ui/web/resources/themes/stylesheets/ext4/default/util/_focus.scss')
-rw-r--r--deluge/ui/web/resources/themes/stylesheets/ext4/default/util/_focus.scss37
1 files changed, 37 insertions, 0 deletions
diff --git a/deluge/ui/web/resources/themes/stylesheets/ext4/default/util/_focus.scss b/deluge/ui/web/resources/themes/stylesheets/ext4/default/util/_focus.scss
new file mode 100644
index 000000000..eeca01038
--- /dev/null
+++ b/deluge/ui/web/resources/themes/stylesheets/ext4/default/util/_focus.scss
@@ -0,0 +1,37 @@
+.#{$prefix}focus-element {
+ position: absolute;
+ top: -10px;
+ left: -10px;
+ width: 0px;
+ height: 0px;
+}
+
+.#{$prefix}focus-frame {
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ z-index: 100000000;
+ width: 0px;
+ height: 0px;
+}
+
+.#{$prefix}focus-frame-top,
+.#{$prefix}focus-frame-bottom,
+.#{$prefix}focus-frame-left,
+.#{$prefix}focus-frame-right {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+}
+
+.#{$prefix}focus-frame-top,
+.#{$prefix}focus-frame-bottom {
+ border-top: $focus-frame-style $focus-frame-width $focus-frame-color;
+ height: $focus-frame-width;
+}
+
+.#{$prefix}focus-frame-left,
+.#{$prefix}focus-frame-right {
+ border-left: $focus-frame-style $focus-frame-width $focus-frame-color;
+ width: $focus-frame-width;
+}