mirror of https://github.com/vector-im/riot-web
Merge pull request #3470 from matrix-org/bwindels/fix-details-arrow-webkit
Fix: hide details summary arrow in create room dialog on webkit toopull/21833/head
commit
86cbaf5b40
|
@ -21,6 +21,11 @@ limitations under the License.
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: $accent-color;
|
color: $accent-color;
|
||||||
|
|
||||||
|
// list-style doesn't do it for webkit
|
||||||
|
&::-webkit-details-marker {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
|
|
Loading…
Reference in New Issue