forked from frontdevde/mnml-devtools-theme
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCustom.less
More file actions
65 lines (52 loc) · 1.57 KB
/
Custom.less
File metadata and controls
65 lines (52 loc) · 1.57 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
/**********************************************/
/*
/* enlightened Theme for Chrome DevTools by Vincent Mac
/* Forked from mnml Theme for Chrome DevTools by Michael P. Pfeiffer
/*
/**********************************************/
@import 'includes/variables.less';
//detection-helper
.revealer(){
color: red !important;
background: red !important;
}
#-webkit-web-inspector {
@import 'includes/elements.less';
::selection {
background: #888;
opacity: 1;
}
@import 'includes/toolbar.less';
@import 'includes/statusbar.less';
@import 'includes/sidebar.less';
@import 'includes/console.less';
@import 'includes/sources.less';
@import 'includes/html-styles.less';
@import 'includes/css-styles.less';
@import 'includes/javascript-styles.less';
@import 'includes/popover.less';
@import 'includes/network.less';
@import 'includes/timeline.less';
@import 'includes/resources.less';
@import 'includes/settings.less';
.styles-element-state-pane {
background: @selection !important;
}
.placard:nth-of-type(2n) {
background: #333 !important;
}
.placard.selected {
background-image: -webkit-linear-gradient(@toolbar-border-top, darken(@toolbar-border-top, 30%)) !important;
border-top-color: darken(@toolbar-border-top, 30%) !important;
}
.placard .title {
color: #CCC !important;
}
.placard .subtitle {
color: rgba(255, 255, 255, 0.7) !important;
}
.webkit-execution-line.webkit-line-content {
background-color: @selection !important;
outline: 1px solid darken(@selection, 15%) !important;
}
}