Back to home page

EIC code displayed by LXR

 
 

    


Warning, /iDDS/monitor/data/scss/widgets/comments.scss is written in an unsupported language. File is not indexed.

0001 /*******************/
0002 /*Comment widgets*/
0003 /*******************/
0004 
0005 .comment-widgets {
0006     position: relative;
0007     margin-bottom: 10px;
0008     .comment-row {
0009         border-bottom:1px solid transparent;
0010         padding: 14px;
0011         display: flex;
0012         margin: 10px 0;
0013         &:last-child{
0014             border-bottom:0px;
0015         }
0016         &:hover,
0017         &.active {
0018             background:$transparent-dark-bg; 
0019         }
0020     }
0021 }
0022 
0023 .comment-text {
0024     padding-left: 15px;
0025     width:100%;
0026     &:hover .comment-footer,
0027     &.active .comment-footer {
0028         .action-icons {
0029             visibility: visible;
0030         }
0031     }
0032     p {
0033         max-height: 65px;
0034         width:100%;
0035         overflow: hidden;
0036         
0037     } 
0038 }
0039 
0040 .comment-footer {
0041     .action-icons {
0042         visibility: hidden;
0043         a {
0044             padding-left: 7px;
0045             vertical-align: middle;
0046             color: $gray-500;
0047             &:hover,
0048             &.active {
0049                 color: $info;
0050             }
0051         }
0052     }
0053 }