Skip to content
Snippets Groups Projects
Unverified Commit b33fe258 authored by Daniel Rudolf's avatar Daniel Rudolf
Browse files

CSS: Fix border value order

parent db2e386a
No related branches found
No related tags found
No related merge requests found
......@@ -234,7 +234,7 @@ th {
color: #333;
}
td, th { border: solid 1px #ccc; }
td, th { border: 1px solid #ccc; }
tr:not(:last-child) td, tr:not(:last-child) th { border-bottom: 0 none; }
thead tr:last-child th { border-bottom: 0 none; }
td:not(:last-child), th:not(:last-child) { border-right: 0 none; }
......@@ -302,7 +302,7 @@ blockquote {
label, fieldset legend { font-weight: bold; }
input:not([type="checkbox"]):not([type="radio"]), button, select, textarea, fieldset, fieldset legend {
border: solid 1px #ccc;
border: 1px solid #ccc;
border-radius: 0.3em;
background: #fff;
-webkit-transition: none .2s ease-in;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment