Skip to content

Commit

Permalink
Use generic CSS border-radius instead of browser specific ones. Alle …
Browse files Browse the repository at this point in the history
…browsers should support that by now.
  • Loading branch information
joto committed Feb 13, 2012
1 parent 3b7512f commit fde721c
Showing 1 changed file with 10 additions and 46 deletions.
56 changes: 10 additions & 46 deletions web/public/css/taginfo.css
Expand Up @@ -110,11 +110,7 @@ span.button {
color: #303030;
border: 1px solid #e8e8e8;
padding: 2px 4px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
-chrome-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}

span.disabled {
Expand All @@ -127,7 +123,7 @@ span.disabled {
.tipsy-inner { background-color: #000; color: #FFF; max-width: 220px; padding: 5px 8px 4px 8px; text-align: center; }

/* Rounded corners */
.tipsy-inner { border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; }
.tipsy-inner { border-radius: 4px; }

.tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 5px dashed #000; }

Expand All @@ -153,11 +149,7 @@ span.customStyleSelectBox {
padding: 1px 4px 0 4px;
border:1px solid #a0a0a0;
background-color: #ffffff;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
-chrome-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
font-size: 90%;
text-align: left;
}
Expand Down Expand Up @@ -209,11 +201,7 @@ input#search {
width: 228px;
padding: 2px;
border: 1px solid #a0a0a0;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
-chrome-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}

input:focus {
Expand Down Expand Up @@ -253,11 +241,7 @@ div#footer_right {
div.box {
background-color: #ddddd4;
padding: 20px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
-chrome-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}

.resize, .ui-tabs-panel {
Expand Down Expand Up @@ -296,11 +280,7 @@ table.boxes td.box {
background-color: #ddddd4;
padding: 8px;
margin-bottom: 10px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
-chrome-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}

/* ========== */
Expand Down Expand Up @@ -332,11 +312,7 @@ span.lang {
font-weight: bold;
font-size: 80%;
padding: 0 4px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
-chrome-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}

td.number {
Expand All @@ -347,11 +323,7 @@ span.char {
background-color: #f0f0f0;
border: 1px solid #e0e0e0;
padding: 0 2px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
-chrome-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}

form#filter-form {
Expand Down Expand Up @@ -460,11 +432,7 @@ table.drilldown td.content {
width: 16em;
border: 1px solid #d0d0d0;
background-color: #f0f0f0;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
-chrome-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
padding: 10px 0;
}

Expand All @@ -491,11 +459,7 @@ table.drilldown td#feature {

table.desc {
background-color: #b8b8b0;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
-chrome-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
padding: 6px;
width: 100%;
}
Expand Down

0 comments on commit fde721c

Please sign in to comment.