mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-17 23:53:25 +02:00
Update to latest bootstrap-ui 1.0.3. Change Wifi settings button and behaviour of several tooltips accordingly. Remove collapse elements since the animation breaks.
42 lines
636 B
CSS
42 lines
636 B
CSS
/**
|
|
Hand pointer
|
|
*/
|
|
.pointer,
|
|
.movement-area-image {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/**
|
|
Default cursor
|
|
*/
|
|
.cursor,
|
|
.console-message-text,
|
|
uib-tab-heading {
|
|
cursor: default;
|
|
}
|
|
|
|
/**
|
|
Text unselectable
|
|
*/
|
|
.unselectable,
|
|
uib-tab-heading {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
/**
|
|
Text selectable
|
|
*/
|
|
.selectable {
|
|
-webkit-touch-callout: default;
|
|
-webkit-user-select: auto;
|
|
-khtml-user-select: auto;
|
|
-moz-user-select: text;
|
|
-ms-user-select: auto;
|
|
user-select: auto;
|
|
}
|