-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Çağatay Çivici
authored and
Çağatay Çivici
committed
Jun 28, 2018
1 parent
333e847
commit 690222f
Showing
5 changed files
with
451 additions
and
328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
.ui-panelmenu { | ||
width: auto; | ||
} | ||
|
||
.ui-panelmenu .ui-menu-separator { | ||
border-width: 1px 0 0 0; | ||
} | ||
|
||
.ui-panelmenu .ui-panelmenu-content-wrapper { | ||
overflow: hidden; | ||
} | ||
|
||
.ui-panelmenu .ui-panelmenu-header { | ||
margin: -1px 0 0 0; | ||
zoom: 1; | ||
} | ||
|
||
.ui-panelmenu .ui-panelmenu-header-link { | ||
padding: .5em; | ||
display: block; | ||
text-decoration: none; | ||
} | ||
|
||
.ui-panelmenu .ui-menuitem-icon { | ||
margin-right: .25em; | ||
} | ||
|
||
.ui-panelmenu .ui-panelmenu-content { | ||
padding: 0.25em; | ||
border-top: 0; | ||
margin-bottom: 1px; | ||
} | ||
|
||
.ui-panelmenu .ui-submenu-list { | ||
margin: 0; | ||
padding: 0; | ||
list-style: none; | ||
margin-left: 1.5em; | ||
} | ||
|
||
.ui-panelmenu .ui-panelmenu-content > .ui-panelmenu-root-submenu.ui-submenu-list { | ||
margin-left: 0; | ||
} | ||
|
||
.ui-panelmenu .ui-menuitem { | ||
overflow: hidden; | ||
margin: .125em 0; | ||
} | ||
|
||
.ui-panelmenu .ui-menuitem-link { | ||
padding: .25em; | ||
display: block; | ||
text-decoration: none; | ||
} | ||
|
||
.ui-panelmenu .ui-panelmenu-content-wrapper-collapsed { | ||
overflow: hidden; | ||
max-height: 0; | ||
transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); | ||
} | ||
|
||
.ui-panelmenu .ui-panelmenu-content-wrapper-expanded { | ||
max-height: 1000px; | ||
transition: max-height 1s ease-in-out; | ||
} |
Oops, something went wrong.