mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
f6e9d36c32
Summary: round them there corners, to create more of a "bubble" effect in legalpad. Ref T3116. Test Plan: see screenshot, which demonstrates new style works Reviewers: epriestley Reviewed By: epriestley CC: chad, Korvin, epriestley, aran Maniphest Tasks: T3116 Differential Revision: https://secure.phabricator.com/D8060
18 lines
360 B
CSS
18 lines
360 B
CSS
/**
|
|
* @provides legalpad-document-css
|
|
*/
|
|
|
|
.legalpad .phabricator-remarkup .remarkup-note {
|
|
border-radius: 14px;
|
|
-moz-border-radius: 14px;
|
|
}
|
|
|
|
.legalpad .phabricator-remarkup .remarkup-warning {
|
|
border-radius: 14px;
|
|
-moz-border-radius: 14px;
|
|
}
|
|
|
|
.legalpad .phabricator-remarkup .remarkup-important {
|
|
border-radius: 14px;
|
|
-moz-border-radius: 14px;
|
|
}
|