12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .release-app2>.row>.col-sm-2 {
- background-color: transparent;
- }
- .aside-left {
- background-color: #ffffff;
- }
- .aside-app-list {
- max-height: calc(100vh - 300px);
- overflow-y: auto;
- }
- .aside-app-list::-webkit-scrollbar {
- width: 4px;
- background-color: #e5e5e5;
- border-radius: 2px;
- }
- .aside-app-list::-webkit-scrollbar-thumb {
- background-color: #157df1;
- border-radius: 2px;
- }
- .aside-app-list-tilte {
- color: rgba(21, 21, 21, 1);
- font-family: Source Han Sans SC;
- font-weight: 700;
- font-style: Bold;
- font-size: 14px;
- line-height: 25.6px;
- text-align: center;
- margin-top: -6px;
- margin-bottom: 14px;
- }
- aside.aside-left .aside-app-list li a {
- display: flex;
- align-items: center;
- padding-left: 26px;
- }
- aside.aside-left .aside-app-list li a .app-img {
- background-repeat: no-repeat;
- background-size: 100% 100%;
- background-position: center;
- width: 36px;
- height: 36px;
- border-radius: 8px;
- margin-right: 12px;
- flex-shrink: 0;
- }
- aside.aside-left .aside-app-list li a .app-info {
- padding-right: 12px;
- flex: 1;
- min-width: 0;
- }
- aside.aside-left .aside-app-list li a .app-info .app-name-text {
- color: rgba(21, 21, 21, 1);
- font-family: Source Han Sans SC;
- font-weight: 700;
- font-style: Bold;
- font-size: 14px;
- line-height: 15.4px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- aside.aside-left .aside-app-list li a .app-info .app-form-text {
- color: rgba(143, 149, 159, 1);
- font-family: Source Han Sans SC;
- font-weight: 400;
- font-size: 13px;
- line-height: 13px;
- margin-top: 4px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
|