annotate plugins/redmine_checkout/assets/stylesheets/checkout.css @ 1327:287f201c2802 redmine-2.2-integration

Add italic
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jun 2013 20:56:22 +0100
parents b4b72f1eb644
children
rev   line source
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@319 23 .topline {
chris@319 24 border-top: 1px solid #ccc;
chris@319 25 }
chris@319 26
Chris@16 27 #checkout_box {
Chris@16 28 margin: 10px 0;
Chris@16 29 }
Chris@16 30
Chris@16 31 #checkout_protocols {
Chris@16 32 height: 23px;
Chris@16 33 float: left;
Chris@16 34 margin: 0;
Chris@16 35 padding: 0;
Chris@16 36 }
Chris@16 37
Chris@16 38 #checkout_protocols li {
Chris@16 39 float: left;
Chris@16 40 list-style-type: none;
Chris@16 41 margin: 0;
Chris@16 42 padding: 0;
Chris@16 43 }
Chris@16 44
Chris@16 45 #checkout_protocols li:first-child a {
Chris@16 46 border-left-width: 1px;
Chris@16 47
Chris@16 48 /* Standard, Opera 10, IE 9 */
Chris@16 49 border-top-left-radius: 3px;
Chris@16 50 border-bottom-left-radius: 3px;
Chris@16 51 /* Konquerer */
Chris@16 52 -khtml-border-top-left-radius: 3px;
Chris@16 53 -khtml-border-bottom-left-radius: 3px;
Chris@16 54 /* Gecko (Firefox, ...) */
Chris@16 55 -moz-border-radius: 3px 0 0 3px;
Chris@16 56 /* Webkit (Chrome, Safari, ...) */
Chris@16 57 -webkit-border-top-left-radius: 3px;
Chris@16 58 -webkit-border-bottom-left-radius: 3px;
Chris@16 59 /* IE <= 9 not supported */
Chris@16 60 }
Chris@16 61
Chris@16 62 #checkout_protocols li a,
Chris@16 63 #clipboard_button {
Chris@16 64 background-color: #eee;
Chris@16 65 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 66 background: -khtml-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ddd)); /* Konquerer */
Chris@16 67 background: -moz-linear-gradient(top, #f8f8f8, #ddd); /* Gecko (Firefox, ...) */
Chris@16 68 background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ddd)); /* Webkit (Chrome, Safari, ...) */
Chris@16 69 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#dddddd'); /* IE 5.5 - 7 */
Chris@16 70 -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#dddddd'); /* IE 8 */
Chris@16 71
Chris@16 72 border-color: #bbb;
Chris@16 73 border-style: solid;
Chris@16 74 border-width: 1px 1px 1px 0;
Chris@16 75
Chris@16 76 color: #333;
Chris@16 77 display: block;
Chris@16 78 font-size: 11px;
Chris@16 79 font-weight: bold;
Chris@16 80 line-height: 21px;
Chris@16 81 margin: 0;
Chris@16 82 padding: 0 10px 0 11px;
Chris@16 83 text-decoration: none;
Chris@16 84 text-shadow: 1px 1px 0 #fff;
Chris@16 85 position: relative; /* to please IE */
Chris@16 86 }
Chris@16 87
Chris@16 88 #checkout_protocols li a:hover,
Chris@16 89 #checkout_protocols li a:focus {
Chris@16 90 background-color: #507AAA;
Chris@16 91 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 92 background: -khtml-gradient(linear, left top, left bottom, from(#759fcf), to(#507AAA)); /* Konquerer */
Chris@16 93 background: -moz-linear-gradient(top, #759fcf, #507AAA); /* Gecko (Firefox, ...) */
Chris@16 94 background: -webkit-gradient(linear, left top, left bottom, from(#759fcf), to(#507AAA)); /* Webkit (Chrome, Safari, ...) */
Chris@16 95 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#759fcf', endColorstr='#507AAA'); /* IE 5.5 - IE 7 */
Chris@16 96 -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#759fcf', endColorstr='#507AAA'); /* IE 8 */
Chris@16 97
Chris@16 98 color: #fff;
Chris@16 99 text-shadow: -1px -1px 0 rgba(0,0,0,0.4);
Chris@16 100 border-top-color: #759fcf;
Chris@16 101 border-bottom-color: #507AAA;
Chris@16 102 }
Chris@16 103
Chris@16 104 #checkout_protocols li a.selected,
Chris@16 105 #clipboard_button.active {
Chris@16 106 background-color: #bbb;
Chris@16 107 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 108 background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#aaa)); /* Konquerer */
Chris@16 109 background: -moz-linear-gradient(top, #ccc, #aaa); /* Gecko (Firefox, ...) */
Chris@16 110 background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#aaa)); /* Webkit (Chrome, Safari, ...) */
Chris@16 111 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#aaaaaa'); /* IE 5.5 - IE 7 */
Chris@16 112 -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#aaaaaa'); /* IE 8 */
Chris@16 113
Chris@16 114 color: #000;
Chris@16 115 text-shadow: 1px 1px 0 rgba(255,255,255,0.4);
Chris@16 116 border-color: #bbb;
Chris@16 117 }
Chris@16 118
Chris@16 119 #checkout_url {
Chris@16 120 border: 1px solid #bbb;
Chris@16 121 border-width: 1px 1px 1px 0;
Chris@16 122 background-color: #fff;
Chris@16 123 color: #000;
Chris@16 124 font-size: 11px;
Chris@16 125 height: 16px;
Chris@16 126 padding: 3px 5px 2px;
Chris@16 127 width: 400px;
Chris@16 128 font-family: Monaco,"DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",monospace;
Chris@16 129 margin: 0 5px 0 0;
Chris@16 130 float: left;
Chris@16 131 }
Chris@16 132
Chris@16 133 #checkout_box p {
Chris@16 134 color: #666;
Chris@16 135 line-height: 23px;
Chris@16 136 font-size: 11px;
Chris@16 137 margin: 0 0 0 5px;
Chris@16 138 }
Chris@16 139
Chris@16 140 span#checkout_access {
Chris@16 141 font-weight: bold;
Chris@16 142 }
Chris@16 143
Chris@16 144 #clipboard_container {
Chris@16 145 position: relative;
Chris@16 146 float: left;
Chris@16 147 margin-right: 5px;
Chris@16 148 }
Chris@16 149
Chris@16 150 #clipboard_button {
Chris@16 151 height: 21px;
Chris@16 152 width: 23px;
Chris@16 153 padding: 0;
Chris@16 154 border-width: 1px;
Chris@16 155 text-align: center;
Chris@16 156
Chris@16 157 border-radius: 5px; /* Standard, Opera 10, IE 9 */
Chris@16 158 -khtml-border-radius: 3px; /* Konquerer */
Chris@16 159 -moz-border-radius: 3px ; /* Gecko (Firefox, ...) */
Chris@16 160 -webkit-border-radius: 3px; /* Webkit (Chrome, Safari, ...) */
Chris@16 161 /* IE <= 9 not supported */
Chris@16 162 }
Chris@16 163
Chris@16 164 #clipboard_button img {
Chris@16 165 padding-top: 2px;
chris@319 166 }