Chris@16
|
1 /* Uncomment the following line for nicer tables if you use the alternate theme (or derived). */
|
Chris@16
|
2 /* @import url(checkout_alternate.css); */
|
Chris@16
|
3
|
Chris@16
|
4 table.checkout_protocol_table td { padding-right: 6px; vertical-align: middle; /* Double the border with of text input boxes */ }
|
Chris@16
|
5 table.checkout_protocol_table td.protocol_access { padding-right: 0; }
|
Chris@16
|
6 table.checkout_protocol_table td input[type=text], .checkout_protocol_table td select { width: 100%; }
|
Chris@16
|
7 table.checkout_protocol_table td.protocol_delete { width: 16px; }
|
Chris@16
|
8 table.checkout_protocol_table td.protocol_append_path, table.checkout_protocol_table td.protocol_is_default { text-align: center; }
|
Chris@16
|
9
|
Chris@16
|
10 .icon-changeset { background-image: url(../../../images/changeset.png);}
|
Chris@16
|
11
|
Chris@16
|
12 .repository-info {
|
Chris@16
|
13 background-color: #eee;
|
Chris@16
|
14 border: 1px solid #E4E4E4;
|
Chris@16
|
15 padding: 0 10px;
|
Chris@16
|
16 margin: 4px 0 10px;
|
Chris@16
|
17 }
|
Chris@16
|
18
|
Chris@16
|
19 .bottomline {
|
Chris@16
|
20 border-bottom: 1px solid #ccc;
|
Chris@16
|
21 }
|
Chris@16
|
22
|
Chris@16
|
23 #checkout_box {
|
Chris@16
|
24 margin: 10px 0;
|
Chris@16
|
25 }
|
Chris@16
|
26
|
Chris@16
|
27 #checkout_protocols {
|
Chris@16
|
28 height: 23px;
|
Chris@16
|
29 float: left;
|
Chris@16
|
30 margin: 0;
|
Chris@16
|
31 padding: 0;
|
Chris@16
|
32 }
|
Chris@16
|
33
|
Chris@16
|
34 #checkout_protocols li {
|
Chris@16
|
35 float: left;
|
Chris@16
|
36 list-style-type: none;
|
Chris@16
|
37 margin: 0;
|
Chris@16
|
38 padding: 0;
|
Chris@16
|
39 }
|
Chris@16
|
40
|
Chris@16
|
41 #checkout_protocols li:first-child a {
|
Chris@16
|
42 border-left-width: 1px;
|
Chris@16
|
43
|
Chris@16
|
44 /* Standard, Opera 10, IE 9 */
|
Chris@16
|
45 border-top-left-radius: 3px;
|
Chris@16
|
46 border-bottom-left-radius: 3px;
|
Chris@16
|
47 /* Konquerer */
|
Chris@16
|
48 -khtml-border-top-left-radius: 3px;
|
Chris@16
|
49 -khtml-border-bottom-left-radius: 3px;
|
Chris@16
|
50 /* Gecko (Firefox, ...) */
|
Chris@16
|
51 -moz-border-radius: 3px 0 0 3px;
|
Chris@16
|
52 /* Webkit (Chrome, Safari, ...) */
|
Chris@16
|
53 -webkit-border-top-left-radius: 3px;
|
Chris@16
|
54 -webkit-border-bottom-left-radius: 3px;
|
Chris@16
|
55 /* IE <= 9 not supported */
|
Chris@16
|
56 }
|
Chris@16
|
57
|
Chris@16
|
58 #checkout_protocols li a,
|
Chris@16
|
59 #clipboard_button {
|
Chris@16
|
60 background-color: #eee;
|
Chris@16
|
61 background: url(../images/button.svg) 0 0 no-repeat; /* Opera needs an "image" :( - using svg for this so it will scale properly without looking too ugly */
|
Chris@16
|
62 background: -khtml-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ddd)); /* Konquerer */
|
Chris@16
|
63 background: -moz-linear-gradient(top, #f8f8f8, #ddd); /* Gecko (Firefox, ...) */
|
Chris@16
|
64 background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ddd)); /* Webkit (Chrome, Safari, ...) */
|
Chris@16
|
65 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#dddddd'); /* IE 5.5 - 7 */
|
Chris@16
|
66 -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#dddddd'); /* IE 8 */
|
Chris@16
|
67
|
Chris@16
|
68 border-color: #bbb;
|
Chris@16
|
69 border-style: solid;
|
Chris@16
|
70 border-width: 1px 1px 1px 0;
|
Chris@16
|
71
|
Chris@16
|
72 color: #333;
|
Chris@16
|
73 display: block;
|
Chris@16
|
74 font-size: 11px;
|
Chris@16
|
75 font-weight: bold;
|
Chris@16
|
76 line-height: 21px;
|
Chris@16
|
77 margin: 0;
|
Chris@16
|
78 padding: 0 10px 0 11px;
|
Chris@16
|
79 text-decoration: none;
|
Chris@16
|
80 text-shadow: 1px 1px 0 #fff;
|
Chris@16
|
81 position: relative; /* to please IE */
|
Chris@16
|
82 }
|
Chris@16
|
83
|
Chris@16
|
84 #checkout_protocols li a:hover,
|
Chris@16
|
85 #checkout_protocols li a:focus {
|
Chris@16
|
86 background-color: #507AAA;
|
Chris@16
|
87 background: url(../images/button_focus.svg) 0 0 no-repeat; /* Opera needs an "image" :( - using svg for this so it will scale properly without looking too ugly */
|
Chris@16
|
88 background: -khtml-gradient(linear, left top, left bottom, from(#759fcf), to(#507AAA)); /* Konquerer */
|
Chris@16
|
89 background: -moz-linear-gradient(top, #759fcf, #507AAA); /* Gecko (Firefox, ...) */
|
Chris@16
|
90 background: -webkit-gradient(linear, left top, left bottom, from(#759fcf), to(#507AAA)); /* Webkit (Chrome, Safari, ...) */
|
Chris@16
|
91 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#759fcf', endColorstr='#507AAA'); /* IE 5.5 - IE 7 */
|
Chris@16
|
92 -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#759fcf', endColorstr='#507AAA'); /* IE 8 */
|
Chris@16
|
93
|
Chris@16
|
94 color: #fff;
|
Chris@16
|
95 text-shadow: -1px -1px 0 rgba(0,0,0,0.4);
|
Chris@16
|
96 border-top-color: #759fcf;
|
Chris@16
|
97 border-bottom-color: #507AAA;
|
Chris@16
|
98 }
|
Chris@16
|
99
|
Chris@16
|
100 #checkout_protocols li a.selected,
|
Chris@16
|
101 #clipboard_button.active {
|
Chris@16
|
102 background-color: #bbb;
|
Chris@16
|
103 background: url(../images/button_selected.svg) 0 0 no-repeat; /* Opera needs an "image" :( - using svg for this so it will scale properly without looking too ugly */
|
Chris@16
|
104 background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#aaa)); /* Konquerer */
|
Chris@16
|
105 background: -moz-linear-gradient(top, #ccc, #aaa); /* Gecko (Firefox, ...) */
|
Chris@16
|
106 background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#aaa)); /* Webkit (Chrome, Safari, ...) */
|
Chris@16
|
107 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#aaaaaa'); /* IE 5.5 - IE 7 */
|
Chris@16
|
108 -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#aaaaaa'); /* IE 8 */
|
Chris@16
|
109
|
Chris@16
|
110 color: #000;
|
Chris@16
|
111 text-shadow: 1px 1px 0 rgba(255,255,255,0.4);
|
Chris@16
|
112 border-color: #bbb;
|
Chris@16
|
113 }
|
Chris@16
|
114
|
Chris@16
|
115 #checkout_url {
|
Chris@16
|
116 border: 1px solid #bbb;
|
Chris@16
|
117 border-width: 1px 1px 1px 0;
|
Chris@16
|
118 background-color: #fff;
|
Chris@16
|
119 color: #000;
|
Chris@16
|
120 font-size: 11px;
|
Chris@16
|
121 height: 16px;
|
Chris@16
|
122 padding: 3px 5px 2px;
|
Chris@16
|
123 width: 400px;
|
Chris@16
|
124 font-family: Monaco,"DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",monospace;
|
Chris@16
|
125 margin: 0 5px 0 0;
|
Chris@16
|
126 float: left;
|
Chris@16
|
127 }
|
Chris@16
|
128
|
Chris@16
|
129 #checkout_box p {
|
Chris@16
|
130 color: #666;
|
Chris@16
|
131 line-height: 23px;
|
Chris@16
|
132 font-size: 11px;
|
Chris@16
|
133 margin: 0 0 0 5px;
|
Chris@16
|
134 }
|
Chris@16
|
135
|
Chris@16
|
136 span#checkout_access {
|
Chris@16
|
137 font-weight: bold;
|
Chris@16
|
138 }
|
Chris@16
|
139
|
Chris@16
|
140 #clipboard_container {
|
Chris@16
|
141 position: relative;
|
Chris@16
|
142 float: left;
|
Chris@16
|
143 margin-right: 5px;
|
Chris@16
|
144 }
|
Chris@16
|
145
|
Chris@16
|
146 #clipboard_button {
|
Chris@16
|
147 height: 21px;
|
Chris@16
|
148 width: 23px;
|
Chris@16
|
149 padding: 0;
|
Chris@16
|
150 border-width: 1px;
|
Chris@16
|
151 text-align: center;
|
Chris@16
|
152
|
Chris@16
|
153 border-radius: 5px; /* Standard, Opera 10, IE 9 */
|
Chris@16
|
154 -khtml-border-radius: 3px; /* Konquerer */
|
Chris@16
|
155 -moz-border-radius: 3px ; /* Gecko (Firefox, ...) */
|
Chris@16
|
156 -webkit-border-radius: 3px; /* Webkit (Chrome, Safari, ...) */
|
Chris@16
|
157 /* IE <= 9 not supported */
|
Chris@16
|
158 }
|
Chris@16
|
159
|
Chris@16
|
160 #clipboard_button img {
|
Chris@16
|
161 padding-top: 2px;
|
Chris@16
|
162 } |