-
Notifications
You must be signed in to change notification settings - Fork 26
/
voicepublisher_TURBO.user.css
62 lines (56 loc) · 2 KB
/
voicepublisher_TURBO.user.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* ==UserStyle==
@name voicepublisher. TURBO
@namespace https://github.com/jesus2099/konami-command
@version 2024.4.10
@description Unhide input text fields and selects; Easy scroll Call Details; Keep reducer always on screen in Reports; Handy version hover colours
@author jesus2099
@since 2023-04-12
==/UserStyle== */
/* Customised parts are shown on screen as pink (#ffccff) whenever possible */
@-moz-document domain("voicepublisher.net") {
/* ticket 110254 (declined) -------------
Unhide content of select and input fields
-----------------------------------------
Otherwise hidden by percentage widths in
@media (min-width: 768px), @media (min-width: 992px), @media (min-width: 1200px)
in /assets/application-….css */
.col-md-1, .col-sm-2 {
width: unset;
}
.col-md-1 > input, .col-md-1 > select, .col-sm-2 > input, .col-sm-2 > select {
background-color: #fcf;
}
/* ---------------------
Easy scroll Call Details
------------------------
Otherwise 2 nested vertical scroll bars, little bit clumsy */
div#callDetailsModal > div.modal-dialog > div.modal-content > div.modal-body,
div#callDetailsModal > div.modal-dialog > div.modal-content > div.modal-body > fieldset.call_route > div {
max-height: unset !important;
}
div#callDetailsModal > div.modal-dialog > div.modal-content > div.modal-header {
background-color: #fcf;
}
/* -------------------------------------
Keep reducer always on screen in Reports
------------------------------------- */
div.sidebar.for-reports > div.reducer {
background-color: #fcf;
left: 196px;
position: fixed;
right: unset;
top: 67px;
}
div.sidebar.for-reports > div.reducer.closed {
left: unset;
}
/* ------------------------
Handy version hover colours
------------------------ */
div.sidebar .sidebar-content li.tested a:hover {
background-color: #ff9500; color: white;
}
div.sidebar .sidebar-content li.published a:hover {
background-color: #00b368; color: white;
}
}