mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 08:55:16 +08:00
Merge pull request 'fix style multi-column lists' (#636) from fix/multi-column-list into release/v9.1.0
This commit is contained in:
@ -261,6 +261,11 @@
|
||||
z-index: 15;
|
||||
}
|
||||
|
||||
.multi-column li:after,
|
||||
.multi-column .item-inner:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tab-buttons {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
|
||||
@ -368,6 +368,11 @@
|
||||
z-index: 15;
|
||||
}
|
||||
|
||||
.multi-column li:after,
|
||||
.multi-column .item-inner:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.media-list:not(.inset):not(.inset-md):not(.menu-list) .item-content, .media-list:not(.inset):not(.inset-md):not(.menu-list) li > .item-link, .list:not(.inset):not(.inset-md):not(.menu-list) .media-item .item-content, .list:not(.inset):not(.inset-md):not(.menu-list) .media-item > .item-link {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
@ -65,7 +65,7 @@ const PageTheme = props => {
|
||||
}
|
||||
</Navbar>
|
||||
{arrayThemes.length && (
|
||||
<List className="slide-theme__list">
|
||||
<List className="multi-column slide-theme__list">
|
||||
{arrayThemes.map(theme => {
|
||||
return (
|
||||
<ListItem key={theme.themeId} className={theme.themeId === slideThemeIndex ? "item-theme active" : "item-theme"}
|
||||
@ -109,7 +109,7 @@ const PageLayout = props => {
|
||||
{arrayLayouts.length &&
|
||||
arrayLayouts.map((layouts, index) => {
|
||||
return (
|
||||
<List className="slide-layout__list" key={index}>
|
||||
<List className="multi-column slide-layout__list" key={index}>
|
||||
{layouts.map(layout => {
|
||||
return (
|
||||
<ListItem key={layout.type} className={slideLayoutIndex === layout.type ? "active" : ""}
|
||||
|
||||
Reference in New Issue
Block a user