| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- $whiteBackground: #ececec;
- $primary: #2c54ac;
- $primaryLight: #d7dcef;
- $primaryActive: #1e5cb2;
- $secondary: #fcac04;
- $secondaryLight: #f8b014;
- $secondaryActive: #fdb51c;
- $hoverButtonText: #2c54ac;
- $activeButtonText: #fff;
- $textColor: #555;
- .list .list-container ul li svg {
- width: 25px;
- vertical-align: top;
- margin-top: 9px;
- margin-left: 10px;
- }
- .html5 {
- color: #f16529;
- }
- .file-alt {
- color: #20d2d1;
- }
- .list .list-container ul li {
- .marker {
- float: left;
- width: 4px;
- height: 34px;
- margin-right: 5px;
- }
- }
- .list .list-container ul li .js {
- width: 16px;
- color: #f7df1c;
- background: black;
- margin: 9px 4px 0 15px;
- }
- .php {
- color: #777bb3;
- }
- .css3 {
- color: #0079cb;
- }
- .sass {
- color: #cd6699;
- }
- .image {
- color: #36afae;
- }
- .folder-open {
- color: #e29741;
- }
- .file {
- color: #11b1b1;
- }
- .archive {
- color: rgb(209, 206, 43);
- }
- .download {
- color: #929ca3;
- }
- .fOwner,
- .fPermissions,
- .fSize,
- .fDate,
- .fTime {
- font-size: 14px;
- float: right;
- width: 60px;
- padding-top: 2px;
- }
- .list .list-container ul li .fName {
- margin-left: 5px;
- width: 260px;
- display: inline-block;
- overflow: hidden;
- text-overflow: clip;
- .name {
- padding: 0 5px;
- float: left;
- margin-left: 5px;
- line-height: 34px;
- font-size: 15px;
- white-space: nowrap;
- transition: all ease-out .3s;
-
- &:hover {
- transition: all ease-out .2s;
- background: rgb(201, 199, 199);
- border-radius: 4px;
- cursor: pointer;
- }
- }
- }
- .list .list-container ul li.active .fName .name:hover {
- background: #F0B607;
- color: black;
- }
- .list .list-container ul li .fPermissions {
- margin-left: 35px;
- width: 50px;
- color: #727272;
- font-size: 11px;
- }
- .list .list-container ul li .fDate .date {
- color: #727272;
- font-size: 11px;
- }
- .list .list-container ul li .fTime {
- color: #727272;
- font-size: 11px;
- width: 54px;
- }
- .fSize {
- padding-right: 15px;
- text-align: right;
- width: 95px;
- }
- .list .list-container ul li .fOwner {
- color: #896417;
- font-style: italic;
- width: 50px;
- font-size: 12px;
- margin-right: 5px;
- }
- .value {
- color: $primary;
- }
- .unit {
- font-weight: bolder;
- color: #727272;
- }
- li.inactive {
- .marker {
- float: left;
- width: 4px;
- height: 34px;
- margin-right: 5px;
- background: rgb(163, 163, 163);
- }
- background: rgb(201, 199, 199);
- }
- .inactive-selected {
- background: rgb(220, 220, 220);
- }
- @media (max-width: 1320px){
- .fPermissions, .fOwner {
- display: none;
- }
- }
|