Last active
January 4, 2019 11:46
-
-
Save muthu32/10f5812f87b21abdd36ab2a94cbb690e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| .wrap | |
| { | |
| height: 100%; | |
| width: 100%; | |
| position: fixed; | |
| padding-top: 104px; | |
| left: 0; | |
| z-index: 99; | |
| top:-100%; | |
| } | |
| .wrap .search-wrapper | |
| { | |
| height:100%; | |
| overflow:scroll; | |
| } | |
| html,body { | |
| height: 100%; | |
| } | |
| .background-content { | |
| height: 100%; | |
| overflow: auto; | |
| } | |
| body | |
| { | |
| padding-top:101px; | |
| } | |
| /************ELLIPSIS*************/ | |
| .ulname { | |
| height:45px !important; | |
| display: block; | |
| display: -webkit-box; | |
| max-width: 100%; | |
| height: 80px; | |
| /* Fallback for non-webkit */ | |
| margin: 0 auto; | |
| line-height: 1.4; | |
| -webkit-line-clamp: 3; | |
| -webkit-box-orient: vertical; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment