mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-09-13 00:06:04 +00:00
Stop using obsoleted "-moz-border-radius" and "-webkit-border-radius" properties
Fixes #480
This commit is contained in:
@@ -54,12 +54,12 @@ canvas.tw-edit-bitmapeditor {
|
||||
}
|
||||
|
||||
.tw-drop-down {
|
||||
<<border-radius 4px>>
|
||||
border-radius: 4px;
|
||||
<<box-shadow "2px 2px 10px rgba(0, 0, 0, 0.5)">>
|
||||
}
|
||||
|
||||
.tw-block-dropdown {
|
||||
<<border-radius 4px>>
|
||||
border-radius: 4px;
|
||||
<<box-shadow "2px 2px 10px rgba(0, 0, 0, 0.5)">>
|
||||
}
|
||||
|
||||
@@ -68,23 +68,23 @@ canvas.tw-edit-bitmapeditor {
|
||||
}
|
||||
|
||||
.modal {
|
||||
<<border-radius 6px>>
|
||||
border-radius: 6px;
|
||||
<<box-shadow "0 3px 7px rgba(0,0,0,0.3)">>
|
||||
}
|
||||
|
||||
.modal-footer {
|
||||
<<border-radius "0 0 6px 6px">>
|
||||
border-radius: 0 0 6px 6px;
|
||||
<<box-shadow "inset 0 1px 0 #fff">>;
|
||||
}
|
||||
|
||||
|
||||
.tw-alert {
|
||||
<<border-radius 6px>>
|
||||
border-radius: 6px;
|
||||
<<box-shadow "0 3px 7px rgba(0,0,0,0.6)">>
|
||||
}
|
||||
|
||||
.tw-notification {
|
||||
<<border-radius 6px>>
|
||||
border-radius: 6px;
|
||||
<<box-shadow "0 3px 7px rgba(0,0,0,0.3)">>
|
||||
text-shadow: 0 1px 0 rgba(255,255,255, 0.8);
|
||||
}
|
||||
|
@@ -52,7 +52,7 @@ pre {
|
||||
background-color: <<colour pre-background>>;
|
||||
border: 1px solid <<colour pre-border>>;
|
||||
padding: 0 3px 2px;
|
||||
<<border-radius 3px>>
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
code {
|
||||
@@ -61,7 +61,7 @@ code {
|
||||
border: 1px solid <<colour code-border>>;
|
||||
white-space: pre-wrap;
|
||||
padding: 0 3px 2px;
|
||||
<<border-radius 3px>>
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
@@ -193,7 +193,7 @@ a.tw-tiddlylink-external:hover {
|
||||
white-space: nowrap;
|
||||
vertical-align: baseline;
|
||||
background-color: <<colour dragger-background>>;
|
||||
<<border-radius 20px>>
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.tw-tiddler-dragger-cover {
|
||||
@@ -295,7 +295,7 @@ a.tw-tiddlylink-external:hover {
|
||||
white-space: nowrap;
|
||||
vertical-align: baseline;
|
||||
background-color: <<colour tag-background>>;
|
||||
<<border-radius 8px>>
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.tw-untagged-label {
|
||||
|
Reference in New Issue
Block a user