summaryrefslogtreecommitdiff
path: root/codemirror_ui/css/codemirror-ui.css
blob: ee0efcd0c177b54b649d08c5f2b7564eb9a23127 (plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
.codemirror-ui-button-frame{
	border-top:1px solid #ccc;
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
	background:#eee;
	position:relative;
}

.codemirror-ui-button-frame input,.codemirror-ui-button-frame label{
	font-size:0.9em;
}

.codemirror-ui-button-frame label input{
	margin:0px 2px;
	vertical-align:middle;
}
.codemirror-ui-button-frame label{
	padding:0px;
    margin:2px 5px;
	margin-top:0px;
	display:inline-block;		
}

input.codemirror-ui-checkbox{
	
}

.codemirror-ui-button{
	display:block;
	float:left;
	padding:3px;
	line-height:0;
	margin:1px;
	margin-right:0px;
}

.codemirror-ui-button:hover{
	padding:2px;
	border:1px solid #ccc;
}

.codemirror-ui-button img{
	line-height:0;
}

.codemirror-ui-button.inactive{
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	opacity: .5;
}

.codemirror-ui-wrap{
	float:right;
}

.codemirror-find-replace{
	border:1px solid black;
	background : #ddd;
	padding:10px;
	position:absolute;
	width:300px;
	top:0%;
	left:50%;
	margin-left:-150px;
}

iframe{
	/*border:1px solid green !important;*/
}

.codemirror-ui-find-bar{
	text-align:center;	
}

.codemirror-ui-popup-find-wrap{
	position:absolute;
	bottom:100%;
	left:-1px;
	border:1px solid #ccc;
	background:#eee;
	padding:2px 5px;
	border-bottom:0px;
	margin-bottom:-1px;
	display:none;
}

.codemirror-ui-popup-find-wrap.active{
	display:block;
}


.codemirror-ui-popup-find-wrap .codemirror-ui-button{
	float:left;	
} 

.codemirror-ui-popup-find-wrap .codemirror-ui-find-bar{
	float:left;
}

.CodeMirror{
	border:1px solid #ccc;
	background:white;
}

/*
 * This lets us make sure that the fancy-tab-gutter will always enclose the tabs inside it.
 * We're namspcing it since many frameworks include a .clearfix rule of somesort.
 */

.codemirror-ui-clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content:"\0020";
     clear: both;
     height: 0;
     }
.codemirror-ui-clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .codemirror-ui-clearfix { height: 1%; }
.codemirror-ui-clearfix { display: block; }
/* close commented backslash hack */