style.css 14.8 KB
Newer Older
B
Ben 已提交
1

A
AUTOMATIC 已提交
2
/* general gradio fixes */
3

A
AUTOMATIC 已提交
4
:root, .dark{
A
AUTOMATIC 已提交
5 6
    --checkbox-label-gap: 0.25em 0.1em;
    --section-header-text-size: 12pt;
A
AUTOMATIC 已提交
7
    --block-background-fill: transparent;
B
Ben 已提交
8 9
}

A
AUTOMATIC 已提交
10
.block.padded{
11
    padding: 0 !important;
12 13
}

A
AUTOMATIC 已提交
14 15
div.gradio-container{
    max-width: unset !important;
B
Ben 已提交
16 17
}

A
AUTOMATIC 已提交
18 19
.hidden{
    display: none;
B
Ben 已提交
20 21
}

A
AUTOMATIC 已提交
22 23 24
.compact{
    background: transparent !important;
    padding: 0 !important;
W
whw1sfb 已提交
25
}
E
EyeDeck 已提交
26

A
AUTOMATIC 已提交
27 28 29 30 31 32
div.form{
    border-width: 0;
    box-shadow: none;
    background: transparent;
    overflow: visible;
    gap: 0.5em;
M
Michoko 已提交
33 34
}

A
AUTOMATIC 已提交
35 36 37 38 39 40
.block.gradio-dropdown,
.block.gradio-slider,
.block.gradio-checkbox,
.block.gradio-textbox,
.block.gradio-radio,
.block.gradio-checkboxgroup,
41 42
.block.gradio-number,
.block.gradio-colorpicker
A
AUTOMATIC 已提交
43 44 45
{
    border-width: 0 !important;
    box-shadow: none !important;
E
EyeDeck 已提交
46 47
}

A
AUTOMATIC 已提交
48 49
.gap.compact{
    padding: 0;
50
    gap: 0.2em 0;
51 52
}

A
AUTOMATIC 已提交
53
div.compact{
54
    gap: 1em;
E
EyeDeck 已提交
55 56
}

A
AUTOMATIC 已提交
57
.gradio-dropdown ul.options{
A
AUTOMATIC 已提交
58
    z-index: 3000;
E
EyeDeck 已提交
59
}
A
AUTOMATIC 已提交
60

61 62 63 64
.gradio-dropdown label span:not(.has-info),
.gradio-textbox label span:not(.has-info),
.gradio-number label span:not(.has-info)
{
A
AUTOMATIC 已提交
65
    margin-bottom: 0;
A
AUTOMATIC 已提交
66 67
}

A
AUTOMATIC 已提交
68 69
.gradio-dropdown div.wrap.wrap.wrap.wrap{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
70 71
}

A
AUTOMATIC 已提交
72 73
.gradio-dropdown .wrap-inner.wrap-inner.wrap-inner{
    flex-wrap: unset;
I
ItsOlegDm 已提交
74
}
A
AUTOMATIC 已提交
75 76 77 78

.gradio-dropdown .single-select{
    white-space: nowrap;
    overflow: hidden;
I
ItsOlegDm 已提交
79
}
A
AUTOMATIC 已提交
80

81 82
.gradio-dropdown .token-remove.remove-all.remove-all{
    display: none;
E
EyeDeck 已提交
83 84
}

85 86
.gradio-dropdown.multiselect .token-remove.remove-all.remove-all{
    display: flex;
E
EyeDeck 已提交
87 88
}

A
AUTOMATIC 已提交
89 90
.gradio-slider input[type="number"]{
    width: 6em;
E
EyeDeck 已提交
91 92
}

A
AUTOMATIC 已提交
93 94
.block.gradio-checkbox {
    margin: 0.75em 1.5em 0 0;
95 96
}

A
AUTOMATIC 已提交
97 98 99 100 101
.gradio-html div.wrap{
    height: 100%;
}
div.gradio-html.min{
    min-height: 0;
M
Michoko 已提交
102 103
}

104 105
.block.gradio-gallery{
    background: var(--input-background-fill);
106 107
}

108 109 110
.gradio-container .prose a, .gradio-container .prose a:visited{
    color: unset;
    text-decoration: none;
111 112
}

113 114


A
AUTOMATIC 已提交
115
/* general styled components */
116

A
AUTOMATIC 已提交
117 118 119 120 121 122 123
.gradio-button.tool{
    max-width: 2.2em;
    min-width: 2.2em !important;
    height: 2.4em;
    align-self: end;
    line-height: 1em;
    border-radius: 0.5em;
124 125
}

A
AUTOMATIC 已提交
126 127 128
.checkboxes-row{
    margin-bottom: 0.5em;
    margin-left: 0em;
129
}
A
AUTOMATIC 已提交
130 131 132
.checkboxes-row > div{
    flex: 0;
    white-space: nowrap;
133
    min-width: auto;
134 135
}

A
AUTOMATIC 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149
button.custom-button{
    border-radius: var(--button-large-radius);
    padding: var(--button-large-padding);
    font-weight: var(--button-large-text-weight);
    border: var(--button-border-width) solid var(--button-secondary-border-color);
    background: var(--button-secondary-background-fill);
    color: var(--button-secondary-text-color);
    font-size: var(--button-large-text-size);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: var(--button-transition);
    box-shadow: var(--button-shadow);
    text-align: center;
150 151
}

152

A
AUTOMATIC 已提交
153
/* txt2img/img2img specific */
A
AUTOMATIC 已提交
154

A
AUTOMATIC 已提交
155 156 157 158
.block.token-counter{
    position: absolute;
    display: inline-block;
    right: 1em;
A
AUTOMATIC 已提交
159
    min-width: 0 !important;
A
AUTOMATIC 已提交
160 161
    width: auto;
    z-index: 100;
A
AUTOMATIC 已提交
162
    top: -0.75em;
G
Greendayle 已提交
163
}
164

A
AUTOMATIC 已提交
165 166 167 168 169
.block.token-counter span{
    background: var(--input-background-fill) !important;
    box-shadow: 0 0 0.0 0.3em rgba(192,192,192,0.15), inset 0 0 0.6em rgba(192,192,192,0.075);
    border: 2px solid rgba(192,192,192,0.4) !important;
    border-radius: 0.4em;
A
AUTOMATIC 已提交
170 171
}

A
AUTOMATIC 已提交
172 173 174
.block.token-counter.error span{
    box-shadow: 0 0 0.0 0.3em rgba(255,0,0,0.15), inset 0 0 0.6em rgba(255,0,0,0.075);
    border: 2px solid rgba(255,0,0,0.4) !important;
A
AUTOMATIC 已提交
175 176
}

A
AUTOMATIC 已提交
177 178
.block.token-counter div{
    display: inline;
A
AUTOMATIC 已提交
179 180
}

A
AUTOMATIC 已提交
181 182
.block.token-counter span{
    padding: 0.1em 0.75em;
A
AUTOMATIC 已提交
183
}
I
ItsOlegDm 已提交
184

A
AUTOMATIC 已提交
185 186 187 188
[id$=_subseed_show]{
    min-width: auto !important;
    flex-grow: 0 !important;
    display: flex;
A
AUTOMATIC 已提交
189 190
}

A
AUTOMATIC 已提交
191 192 193
[id$=_subseed_show] label{
    margin-bottom: 0.5em;
    align-self: end;
194 195
}

A
AUTOMATIC 已提交
196 197 198
.performance {
    font-size: 0.85em;
    color: #444;
199 200
}

A
AUTOMATIC 已提交
201 202
.performance p{
    display: inline-block;
A
AUTOMATIC 已提交
203 204
}

A
AUTOMATIC 已提交
205 206
.performance .time {
    margin-right: 0;
207 208
}

A
AUTOMATIC 已提交
209
.performance .vram {
210 211
}

A
AUTOMATIC 已提交
212 213
#txt2img_generate, #img2img_generate {
    min-height: 4.5em;
A
AUTOMATIC 已提交
214 215
}

A
AUTOMATIC 已提交
216 217 218 219
@media screen and (min-width: 2500px) {
    #txt2img_gallery, #img2img_gallery {
        min-height: 768px;
    }
A
AUTOMATIC 已提交
220 221
}

A
AUTOMATIC 已提交
222 223
#txt2img_gallery img, #img2img_gallery img{
    object-fit: scale-down;
A
AUTOMATIC 已提交
224
}
A
AUTOMATIC 已提交
225 226 227 228 229
#txt2img_actions_column, #img2img_actions_column {
    gap: 0.5em;
}
#txt2img_tools, #img2img_tools{
    gap: 0.4em;
A
AUTOMATIC 已提交
230 231
}

A
AUTOMATIC 已提交
232 233 234 235 236 237
.interrogate-col{
    min-width: 0 !important;
    max-width: fit-content;
    gap: 0.5em;
}
.interrogate-col > button{
238
    flex: 1;
A
AUTOMATIC 已提交
239 240
}

A
AUTOMATIC 已提交
241 242 243 244
.generate-box{
    position: relative;
}
.gradio-button.generate-box-skip, .gradio-button.generate-box-interrupt{
A
AUTOMATIC 已提交
245
    position: absolute;
A
AUTOMATIC 已提交
246 247 248
    width: 50%;
    height: 100%;
    display: none;
249 250 251 252
    background: #b4c0cc;
}
.gradio-button.generate-box-skip:hover, .gradio-button.generate-box-interrupt:hover{
    background: #c2cfdb;
A
AUTOMATIC 已提交
253 254
}
.gradio-button.generate-box-interrupt{
A
AUTOMATIC 已提交
255
    left: 0;
A
AUTOMATIC 已提交
256 257 258
    border-radius: 0.5rem 0 0 0.5rem;
}
.gradio-button.generate-box-skip{
A
AUTOMATIC 已提交
259
    right: 0;
A
AUTOMATIC 已提交
260
    border-radius: 0 0.5rem 0.5rem 0;
A
AUTOMATIC 已提交
261 262
}

A
AUTOMATIC 已提交
263 264 265 266
#txtimg_hr_finalres{
    min-height: 0 !important;
    padding: .625rem .75rem;
    margin-left: -0.75em
I
innovaciones 已提交
267 268
}

A
AUTOMATIC 已提交
269 270
#txtimg_hr_finalres .resolution{
    font-weight: bold;
I
innovaciones 已提交
271 272
}

A
AUTOMATIC 已提交
273 274
.inactive{
    opacity: 0.5;
A
AUTOMATIC 已提交
275 276
}

A
AUTOMATIC 已提交
277 278 279
[id$=_column_batch]{
    min-width: min(13.5em, 100%) !important;
}
A
AUTOMATIC 已提交
280

A
AUTOMATIC 已提交
281
div.dimensions-tools{
A
AUTOMATIC 已提交
282 283
    min-width: 0 !important;
    max-width: fit-content;
A
AUTOMATIC 已提交
284 285
    flex-direction: row;
    align-content: center;
286
}
287

A
AUTOMATIC 已提交
288 289 290 291
#mode_img2img .gradio-image > div.fixed-height, #mode_img2img .gradio-image > div.fixed-height img{
    height: 480px !important;
    max-height: 480px !important;
    min-height: 480px !important;
292 293
}

294 295
.image-buttons button{
    min-width: auto;
296 297
}

298
.infotext {
299
    overflow-wrap: break-word;
A
AUTOMATIC 已提交
300
}
301

A
AUTOMATIC 已提交
302 303 304
/* settings */
#quicksettings {
    width: fit-content;
A
AUTOMATIC 已提交
305
}
A
AUTOMATIC 已提交
306

A
AUTOMATIC 已提交
307 308 309 310
#quicksettings > div, #quicksettings > fieldset{
    max-width: 24em;
    min-width: 24em;
    padding: 0;
A
AUTOMATIC 已提交
311
    border: none;
A
AUTOMATIC 已提交
312 313
    box-shadow: none;
    background: none;
A
AUTOMATIC 已提交
314 315
}

316 317 318 319 320 321 322 323 324
#settings{
    display: block;
}

#settings > div{
    border: none;
    margin-left: 10em;
}

A
AUTOMATIC 已提交
325
#settings > div.tab-nav{
326 327 328 329 330 331
    float: left;
    display: block;
    margin-left: 0;
    width: 10em;
}

A
AUTOMATIC 已提交
332
#settings > div.tab-nav button{
333 334 335
    display: block;
    border: none;
    text-align: left;
336
    white-space: initial;
337 338 339 340 341 342 343
}

#settings_result{
    height: 1.4em;
    margin: 0 1.2em;
}

A
AUTOMATIC 已提交
344

A
AUTOMATIC 已提交
345
/* live preview */
A
AUTOMATIC 已提交
346
.progressDiv{
I
ItsOlegDm 已提交
347
    position: relative;
348 349
    height: 20px;
    background: #b4c0cc;
A
AUTOMATIC 已提交
350
    border-radius: 3px !important;
I
ItsOlegDm 已提交
351
    margin-bottom: -3px;
A
AUTOMATIC 已提交
352 353 354
}

.dark .progressDiv{
355
    background: #424c5b;
A
AUTOMATIC 已提交
356 357 358
}

.progressDiv .progress{
359 360 361 362 363 364 365 366
    width: 0%;
    height: 20px;
    background: #0060df;
    color: white;
    font-weight: bold;
    line-height: 20px;
    padding: 0 8px 0 0;
    text-align: right;
A
AUTOMATIC 已提交
367
    border-radius: 3px;
368 369
    overflow: visible;
    white-space: nowrap;
A
AUTOMATIC 已提交
370
    padding: 0 0.5em;
371 372 373 374 375 376 377 378 379
}

.livePreview{
    position: absolute;
    z-index: 300;
    background-color: white;
    margin: -4px;
}

380 381 382 383
.dark .livePreview{
    background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}

384
.livePreview img{
A
AUTOMATIC 已提交
385
    position: absolute;
386 387 388
    object-fit: contain;
    width: 100%;
    height: 100%;
A
AUTOMATIC 已提交
389
}
A
AUTOMATIC 已提交
390

A
AUTOMATIC 已提交
391 392
/* fullscreen popup (ie in Lora's (i) button) */

393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
.popup-metadata{
    color: black;
    background: white;
    display: inline-block;
    padding: 1em;
    white-space: pre-wrap;
}

.global-popup{
    display: flex;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(20, 20, 20, 0.95);
}


.global-popup-close:before {
    content: "×";
}

.global-popup-close{
    position: fixed;
    right: 0.25em;
    top: 0;
    cursor: pointer;
    color: white;
    font-size: 32pt;
}

.global-popup-inner{
    display: inline-block;
    margin: auto;
    padding: 2em;
}

A
AUTOMATIC 已提交
433 434
/* fullpage image viewer */

D
DepFA 已提交
435
#lightboxModal{
436 437 438 439 440 441 442 443 444 445 446 447
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(20, 20, 20, 0.95);
    user-select: none;
    -webkit-user-select: none;
    flex-direction: column;
D
DepFA 已提交
448 449
}

450
.modalControls {
451 452 453
    display: flex;
    gap: 1em;
    padding: 1em;
454 455 456
    background-color: rgba(0,0,0,0.2);
}
.modalClose {
457
    margin-left: auto;
D
DepFA 已提交
458
}
459
.modalControls span{
460
    color: white;
461
    font-size: 35px;
462 463
    font-weight: bold;
    cursor: pointer;
464
    width: 1em;
465 466
}

467 468 469
.modalControls span:hover, .modalControls span:focus{
    color: #999;
    text-decoration: none;
D
DepFA 已提交
470 471
}

472
#lightboxModal > img {
D
DepFA 已提交
473
    display: block;
474
    margin: auto;
D
DepFA 已提交
475 476 477
    width: auto;
}

478
#lightboxModal > img.modalImageFullscreen{
D
DepFA 已提交
479
    object-fit: contain;
480
    height: 100%;
D
DepFA 已提交
481 482
}

D
DepFA 已提交
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
.modalPrev,
.modalNext {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.modalNext {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.modalPrev:hover,
.modalNext:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
D
DepFA 已提交
509

A
AUTOMATIC 已提交
510
/* context menu (ie for the generate button) */
511

D
DepFA 已提交
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
#context-menu{
    z-index:9999;
    position:absolute;
    display:block;
    padding:0px 0;
    border:2px solid #a55000;
    border-radius:8px;
    box-shadow:1px 1px 2px #CE6400;
    width: 200px;
}

.context-menu-items{
    list-style: none;
    margin: 0;
    padding: 0;
}

.context-menu-items a{
    display:block;
    padding:5px;
    cursor:pointer;
}

.context-menu-items a:hover{
    background: #a55000;
}
538

539

A
AUTOMATIC 已提交
540
/* extensions */
541

542
#tab_extensions table{
543 544 545
    border-collapse: collapse;
}

A
AUTOMATIC 已提交
546
#tab_extensions table td, #tab_extensions table th{
547 548 549 550
    border: 1px solid #ccc;
    padding: 0.25em 0.5em;
}

A
AUTOMATIC 已提交
551
#tab_extensions table input[type="checkbox"]{
552
    margin-right: 0.5em;
A
AUTOMATIC 已提交
553
    appearance: checkbox;
554 555 556 557 558 559
}

#tab_extensions button{
    max-width: 16em;
}

A
AUTOMATIC 已提交
560 561 562
#tab_extensions input[disabled="disabled"]{
    opacity: 0.5;
}
563

564 565 566 567 568
.extension-tag{
    font-weight: bold;
    font-size: 95%;
}

569 570 571 572 573 574 575 576 577
#available_extensions .info{
    margin: 0;
}

#available_extensions .date_added{
    opacity: 0.85;
    font-size: 90%;
}

A
AUTOMATIC 已提交
578
/* replace original footer with ours */
579

A
AUTOMATIC 已提交
580 581 582 583 584 585 586 587 588 589 590
footer {
    display: none !important;
}

#footer{
    text-align: center;
}

#footer div{
    display: inline-block;
}
A
AUTOMATIC 已提交
591

A
AUTOMATIC 已提交
592 593 594 595 596
#footer .versions{
    font-size: 85%;
    opacity: 0.85;
}

A
AUTOMATIC 已提交
597
/* extra networks UI */
598

A
AUTOMATIC 已提交
599 600
.extra-networks > div > [id *= '_extra_']{
    margin: 0.3em;
A
AUTOMATIC 已提交
601
}
A
AUTOMATIC 已提交
602

603 604 605
.extra-network-subdirs{
    padding: 0.2em 0.35em;
}
A
AUTOMATIC 已提交
606

607 608 609
.extra-network-subdirs button{
    margin: 0 0.15em;
}
A
AUTOMATIC 已提交
610
.extra-networks .tab-nav .search{
A
AUTOMATIC 已提交
611 612 613
    display: inline-block;
    max-width: 16em;
    margin: 0.3em;
614
    align-self: center;
A
AUTOMATIC 已提交
615
    width: 16em;
A
AUTOMATIC 已提交
616 617
}

618 619 620 621 622
#txt2img_extra_view, #img2img_extra_view {
    width: auto;
}

.extra-network-cards .nocards, .extra-network-thumbs .nocards{
A
AUTOMATIC 已提交
623 624 625
    margin: 1.25em 0.5em 0.5em 0.5em;
}

626
.extra-network-cards .nocards h1, .extra-network-thumbs .nocards h1{
A
AUTOMATIC 已提交
627 628 629 630
    font-size: 1.5em;
    margin-bottom: 1em;
}

631
.extra-network-cards .nocards li, .extra-network-thumbs .nocards li{
A
AUTOMATIC 已提交
632 633 634
    margin-left: 0.5em;
}

635 636 637 638 639 640 641 642 643 644 645 646

.extra-network-cards .card .metadata-button:before, .extra-network-thumbs .card .metadata-button:before{
    content: "🛈";
}
.extra-network-cards .card .metadata-button, .extra-network-thumbs .card .metadata-button{
    display: none;
    position: absolute;
    right: 0;
    color: white;
    text-shadow: 2px 2px 3px black;
    padding: 0.25em;
    font-size: 22pt;
647
    width: 1.5em;
648 649 650 651 652 653 654 655 656
}
.extra-network-cards .card:hover .metadata-button, .extra-network-thumbs .card:hover .metadata-button{
    display: inline-block;
}
.extra-network-cards .card .metadata-button:hover, .extra-network-thumbs .card .metadata-button:hover{
    color: red;
}


657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
.extra-network-thumbs {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
}

.extra-network-thumbs .card {
    height: 6em;
    width: 6em;
    cursor: pointer;
    background-image: url('./file=html/card-no-preview.png');
    background-size: cover;
    background-position: center center;
    position: relative;
}

.extra-network-thumbs .card:hover .additional a {
674
    display: inline-block;
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
}

.extra-network-thumbs .actions .additional a {
    background-image: url('./file=html/image-update.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    display: none;
    font-size: 0;
    text-align: -9999;
}

.extra-network-thumbs .actions .name {
    position: absolute;
    bottom: 0;
    font-size: 10px;
    padding: 3px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: rgba(0,0,0,.5);
M
Mykeehu 已提交
702
    color: white;
703 704 705 706 707 708 709
}

.extra-network-thumbs .card:hover .actions .name {
    white-space: normal;
    word-break: break-all;
}

A
AUTOMATIC 已提交
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
.extra-network-cards .card{
    display: inline-block;
    margin: 0.5em;
    width: 16em;
    height: 24em;
    box-shadow: 0 0 5px rgba(128, 128, 128, 0.5);
    border-radius: 0.2em;
    position: relative;

    background-size: auto 100%;
    background-position: center;
    overflow: hidden;
    cursor: pointer;

    background-image: url('./file=html/card-no-preview.png')
}

.extra-network-cards .card:hover{
    box-shadow: 0 0 2px 0.3em rgba(0, 128, 255, 0.35);
}

.extra-network-cards .card .actions .additional{
    display: none;
}

.extra-network-cards .card .actions{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5em;
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 0.25em 0.25em rgba(0,0,0,0.5);
    text-shadow: 0 0 0.2em black;
}

A
AUTOMATIC 已提交
746 747 748 749
.extra-network-cards .card .actions *{
    color: white;
}

A
AUTOMATIC 已提交
750 751 752 753 754 755 756 757 758 759
.extra-network-cards .card .actions:hover{
    box-shadow: 0 0 0.75em 0.75em rgba(0,0,0,0.5) !important;
}

.extra-network-cards .card .actions .name{
    font-size: 1.7em;
    font-weight: bold;
    line-break: anywhere;
}

760 761 762 763 764 765 766 767 768 769 770
.extra-network-cards .card .actions .description {
    display: block;
    max-height: 3em;
    white-space: pre-wrap;
    line-height: 1.1;
}

.extra-network-cards .card .actions .description:hover {
    max-height: none;
}

A
AUTOMATIC 已提交
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
.extra-network-cards .card .actions:hover .additional{
    display: block;
}

.extra-network-cards .card ul{
    margin: 0.25em 0 0.75em 0.25em;
    cursor: unset;
}

.extra-network-cards .card ul a{
    cursor: pointer;
}

.extra-network-cards .card ul a:hover{
    color: red;
}