Browse Source

Merge pull request #46 from prtksxna/radius

Remove vendor prefix for border-radius value
pull/52/head
Aaron Parecki 8 years ago
parent
commit
fbe5ffa79c
1 changed files with 5 additions and 15 deletions
  1. +5
    -15
      public/css/style.css

+ 5
- 15
public/css/style.css View File

@ -13,7 +13,7 @@ body {
.narrow { .narrow {
max-width: 700px; max-width: 700px;
margin-right: auto; margin-right: auto;
margin-left: auto;
margin-left: auto;
} }
.footer { .footer {
@ -28,7 +28,7 @@ body {
.footer .nav { .footer .nav {
max-width: 700px; max-width: 700px;
margin-right: auto; margin-right: auto;
margin-left: auto;
margin-left: auto;
} }
.footer .credits { .footer .credits {
@ -65,7 +65,7 @@ body {
.bs-callout .highlight { .bs-callout .highlight {
background-color: #fff; background-color: #fff;
} }
/* Themes for different contexts */ /* Themes for different contexts */
.bs-callout-danger { .bs-callout-danger {
background-color: #fcf2f2; background-color: #fcf2f2;
@ -132,7 +132,7 @@ body {
float: left; float: left;
margin-left: 10px; margin-left: 10px;
} }
#last_response_date { #last_response_date {
font-size: 80%; font-size: 80%;
font-weight: normal; font-weight: normal;
@ -160,10 +160,6 @@ body {
} }
.img-visible { .img-visible {
-webkit-border-bottom-right-radius: 0;
-webkit-border-bottom-left-radius: 0;
-moz-border-radius-bottomright: 0;
-moz-border-radius-bottomleft: 0;
border-bottom-right-radius: 0; border-bottom-right-radius: 0;
border-bottom-left-radius: 0; border-bottom-left-radius: 0;
} }
@ -171,10 +167,6 @@ body {
#note_location_img img { #note_location_img img {
margin-top: -1px; margin-top: -1px;
border: 1px solid #ccc; border: 1px solid #ccc;
-webkit-border-bottom-right-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-right-radius: 4px; border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px; border-bottom-left-radius: 4px;
} }
@ -194,7 +186,7 @@ body {
cursor: pointer; cursor: pointer;
opacity: 0; opacity: 0;
filter: alpha(opacity=0); filter: alpha(opacity=0);
}
}
.callout { .callout {
border-left: 4px #5bc0de solid; border-left: 4px #5bc0de solid;
@ -205,5 +197,3 @@ body {
.callout table { .callout table {
margin-bottom: 0; margin-bottom: 0;
} }

Loading…
Cancel
Save