-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy path37212.user.js
More file actions
73 lines (71 loc) · 2.17 KB
/
Copy path37212.user.js
File metadata and controls
73 lines (71 loc) · 2.17 KB
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
63
64
65
66
67
68
69
70
71
72
73
// ==UserScript==
// @name Userscripts.org Extended Style
// @namespace http://userscripts.org/scripts/show/37212
// @description Userscripts.org Extended Style
// @copyright jerone & Jesse A.
// @license CC-BY-NC-SA-4.0; https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
// @license GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
// @version 0.0.1
// @include *userscripts.org*
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(
" \
\
/* script management header link fix */ \
#home-scripts th a, \
#home-scripts th a:active { \
color: white !important; \
} \
#home-scripts th a:hover { \
color: #FFDD00 !important; \
} \
\
/* script management stretch */ \
#home-scripts #content .subnav { \
margin-right: -150px; \
width: 10% !important; \
} \
#home-scripts #root>.container, \
#home-scripts #content { \
width: 100% !important; \
} \
#home-scripts #main { \
float: right !important; \
padding-right: 10px !important; \
width: 87% !important; \
} \
\
/* script management table left border */ \
table tr td.script-meat { \
border-left: 1px solid #DDDDDD !important; \
} \
\
/* script management stretch Edit/Update column */ \
.wide.forums th:nth-child(2) { \
width: 135px; \
} \
\
/* script management dent Last Updated column */ \
.wide.forums th:nth-last-child(1) { \
width: 1% !important; \
} \
\
/* script management table more row space */ \
.wide.forums p { \
margin-bottom: 0 !important; \
} \
\
/* script management row hover */ \
.wide.forums tr:hover td { \
background-color: AntiqueWhite; \
} \
\
",
);
//*** STATISTICS ***//
// Chars (exclude spaces): 1.427
// Chars (include spaces): 2.266
// Chars (Chinese): 0
// Words: 277
// Lines: 80