diff options
author | James Moger <james.moger@gitblit.com> | 2011-10-01 15:50:22 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-10-01 15:50:22 -0400 |
commit | 10177fb0a59cc9fc61fb78c724f7b0816b69b798 (patch) | |
tree | 520023f8c3ff6c034dd50fd364e7f83774769747 | |
parent | 8c5d72248c20fc78c7b2c1d4388d073affccad20 (diff) | |
download | gitblit-10177fb0a59cc9fc61fb78c724f7b0816b69b798.tar.gz gitblit-10177fb0a59cc9fc61fb78c724f7b0816b69b798.zip |
CSS fixes for palette buttons
-rw-r--r-- | resources/bootstrap.gb.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/resources/bootstrap.gb.css b/resources/bootstrap.gb.css index a6c23bf6..cf82c87a 100644 --- a/resources/bootstrap.gb.css +++ b/resources/bootstrap.gb.css @@ -709,6 +709,21 @@ span .localBranch { border-color: #00cc33;
}
+table .palette td.buttons button {
+ -webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;
+ border: 1px solid #ccc !important;
+ padding: 10px;
+ margin-bottom: 10px;
+}
+
+table .palette td.buttons button:hover {
+ border: 1px solid #0069D6 !important;
+}
+
+table .palette td.buttons button:active {
+ border: 1px solid orange !important;
+}
+
.feedbackPanelERROR, .feedbackPanelINFO {
list-style: none;
line-height: 35px;
|