Skip to content

Commit e908afe

Browse files
committed
Simplified rounded corner definitions and added cross-browser CSS3 support.
1 parent 69609ef commit e908afe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jquery.markedit.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.markedit { clear: both; }
22
.markedit textarea { width: 100%; }
33

4-
.markedit-toolbar { padding: 0.3em; margin: 0; clear: both; height: 22px; -moz-border-radius-topleft:8px; -moz-border-radius-topright:8px; }
4+
.markedit-toolbar { padding: 0.3em; margin: 0; clear: both; height: 22px; border-radius: 8px 8px 0px 0px; -moz-border-radius: 8px 8px 0px 0px;}
55
.markedit-toolbar .toolbar-group { margin-right: 0.5em; padding: 0 0 0 5px; float: left; }
66
.markedit-toolbar .toggle-group { }
77
.markedit-toolbar .toggle-group button { font-size: 0.85em; font-weight: bold; padding: 0.15em 0.5em; }
8-
.markedit-toolbar .toggle-group button:first-child { -moz-border-radius-bottomleft:11px; -moz-border-radius-topleft:11px; -moz-border-radius-bottomright:0; -moz-border-radius-topright:0; }
9-
.markedit-toolbar .toggle-group button:last-child { -moz-border-radius-bottomleft:0; -moz-border-radius-topleft:0; -moz-border-radius-bottomright:11px; -moz-border-radius-topright:11px; }
8+
.markedit-toolbar .toggle-group button:first-child { -moz-border-radius: 11px 0 0 11px; border-radius: 11px 0 0 11px; }
9+
.markedit-toolbar .toggle-group button:last-child { -moz-border-radius: 0 11px 11px 0; border-radius: 0 11px 11px 0; }
1010

1111
.markedit-toolbar button { height: 22px; outline: 0; cursor: pointer; }
1212
.markedit-toolbar button.icon { width: 22px; background-repeat: no-repeat; margin: 0 5px 0 0; }

0 commit comments

Comments
 (0)