mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Merge pull request #2157 from nextcloud/fix-checkboxes
Fix checkboxes when theming color is enabled
This commit is contained in:
commit
4035d60847
3 changed files with 6 additions and 8 deletions
|
|
@ -319,7 +319,7 @@ class ThemingController extends Controller {
|
|||
$responseCss .= sprintf('input[type="checkbox"].checkbox:checked:enabled:not(.checkbox--white) + label:before {' .
|
||||
'background-image:url(\'%s/core/img/actions/checkmark-white.svg\');' .
|
||||
'background-color: %s; background-position: center center; background-size:contain;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 9px; border-radius:1px;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 2px; border-radius:1px;' .
|
||||
"}\n",
|
||||
\OC::$WEBROOT,
|
||||
$elementColor
|
||||
|
|
|
|||
|
|
@ -428,7 +428,7 @@ class ThemingControllerTest extends TestCase {
|
|||
$expectedData .= sprintf('input[type="checkbox"].checkbox:checked:enabled:not(.checkbox--white) + label:before {' .
|
||||
'background-image:url(\'%s/core/img/actions/checkmark-white.svg\');' .
|
||||
'background-color: %s; background-position: center center; background-size:contain;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 9px; border-radius:1px;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 2px; border-radius:1px;' .
|
||||
"}\n",
|
||||
\OC::$WEBROOT,
|
||||
$color
|
||||
|
|
@ -517,7 +517,7 @@ class ThemingControllerTest extends TestCase {
|
|||
$expectedData .= sprintf('input[type="checkbox"].checkbox:checked:enabled:not(.checkbox--white) + label:before {' .
|
||||
'background-image:url(\'%s/core/img/actions/checkmark-white.svg\');' .
|
||||
'background-color: #555555; background-position: center center; background-size:contain;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 9px; border-radius:1px;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 2px; border-radius:1px;' .
|
||||
"}\n",
|
||||
\OC::$WEBROOT
|
||||
);
|
||||
|
|
@ -691,7 +691,7 @@ class ThemingControllerTest extends TestCase {
|
|||
$expectedData .= sprintf('input[type="checkbox"].checkbox:checked:enabled:not(.checkbox--white) + label:before {' .
|
||||
'background-image:url(\'%s/core/img/actions/checkmark-white.svg\');' .
|
||||
'background-color: %s; background-position: center center; background-size:contain;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 9px; border-radius:1px;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 2px; border-radius:1px;' .
|
||||
"}\n",
|
||||
\OC::$WEBROOT,
|
||||
$color
|
||||
|
|
@ -797,7 +797,7 @@ class ThemingControllerTest extends TestCase {
|
|||
$expectedData .= sprintf('input[type="checkbox"].checkbox:checked:enabled:not(.checkbox--white) + label:before {' .
|
||||
'background-image:url(\'%s/core/img/actions/checkmark-white.svg\');' .
|
||||
'background-color: #555555; background-position: center center; background-size:contain;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 9px; border-radius:1px;' .
|
||||
'width:12px; height:12px; padding:0; margin:2px 6px 6px 2px; border-radius:1px;' .
|
||||
"}\n",
|
||||
\OC::$WEBROOT
|
||||
);
|
||||
|
|
|
|||
|
|
@ -31,9 +31,6 @@ ul.multiselectoptions.up {
|
|||
ul.multiselectoptions>li {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
ul.multiselectoptions > li > input[type="checkbox"]+label:before {
|
||||
margin-left: 7px;
|
||||
}
|
||||
ul.multiselectoptions > li input[type='checkbox']+label {
|
||||
|
|
@ -106,6 +103,7 @@ ul.multiselectoptions input.new {
|
|||
|
||||
ul.multiselectoptions > li.creator {
|
||||
padding: 10px;
|
||||
margin: 0;
|
||||
font-weight: bold;
|
||||
}
|
||||
ul.multiselectoptions > li.creator > input {
|
||||
|
|
|
|||
Loading…
Reference in a new issue