Improve Zoom Module
parent
80f3c5b001
commit
b9da5aaa53
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$" />
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
|
@ -40,13 +40,24 @@ class Zoom extends ListComboBox {
|
||||||
}
|
}
|
||||||
::slotted(*) {
|
::slotted(*) {
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
background: #E8E8E8;
|
|
||||||
border: 1px solid #B0B0B0;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
background-color: var(--icon-bg-color);
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
[part~="popup"] {
|
[part~="popup"] {
|
||||||
width: 150%;
|
width: 150%;
|
||||||
}
|
}
|
||||||
|
elix-number-spin-box {
|
||||||
|
background-color: var(--input-color);
|
||||||
|
border-radius: 3px;
|
||||||
|
height: 20px !important;
|
||||||
|
margin-top: 1px;
|
||||||
|
}
|
||||||
|
elix-number-spin-box::part(spin-button) {
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
`.content
|
`.content
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue