diff options
author | W. Trevor King <wking@tremily.us> | 2012-09-17 09:35:10 -0400 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2012-09-17 09:38:59 -0400 |
commit | 682b25c41cb70ee4e9274274e99f3ebe386e4315 (patch) | |
tree | e0e5163d28d3652b5ab9168bca102defb44da95d | |
parent | 99373a9f5abc16e4eae021b0feaf33a1d26ce476 (diff) | |
download | bugseverywhere-682b25c41cb70ee4e9274274e99f3ebe386e4315.tar.gz |
command:html: convert -moz-border-radius to border-radius.
border-radius and friends are standard CSS3 [1].
[1]: http://www.w3.org/TR/css3-background/#the-border-radius
-rw-r--r-- | libbe/command/html.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libbe/command/html.py b/libbe/command/html.py index 88761fe..4b9880d 100644 --- a/libbe/command/html.py +++ b/libbe/command/html.py @@ -348,7 +348,7 @@ div.main { padding-top: 0; margin-top: 1em; background-color: #fcfcfc; - -moz-border-radius: 10px; + border-radius: 10px; } @@ -361,7 +361,7 @@ div.footer { margin: auto; background: #305275; color: #fffee7; - -moz-border-radius: 10px; + border-radius: 10px; } div.header { @@ -373,7 +373,7 @@ div.header { padding-bottom: 10px; background: #305275; color: #fffee7; - -moz-border-radius: 10px; + border-radius: 10px; } th.target_name { @@ -383,8 +383,8 @@ th.target_name { background-color: #305275; color: #fff; width: auto; - -moz-border-radius-topleft: 8px; - -moz-border-radius-topright: 8px; + border-top-left-radius: 8px; + border-top-right-radius: 8px; padding-left: 5px; padding-right: 5px; } @@ -462,15 +462,15 @@ td.sel.tab { background-color: #c3d9ff ; border: 1px solid #c3d9ff; font-weight:bold; - -moz-border-radius-topleft: 15px; - -moz-border-radius-topright: 15px; + border-top-left-radius: 15px; + border-top-right-radius: 15px; } td.nsel.tab { border: 1px solid #c3d9ff; font-weight:bold; - -moz-border-radius-topleft: 5px; - -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; } table.bug_list { |