gitea源码

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* only used by "repo/empty.tmpl" */
  2. .clone-buttons-combo {
  3. display: flex;
  4. align-items: stretch;
  5. flex: 1;
  6. }
  7. .clone-buttons-combo > .ui.button:not(:last-child) {
  8. border-right: none;
  9. }
  10. .ui.action.input.clone-buttons-combo input {
  11. border-radius: 0; /* override fomantic border-radius for ".ui.input > input" */
  12. }
  13. /* used by the clone-panel popup */
  14. .clone-panel-field,
  15. .clone-panel-list {
  16. margin: 10px;
  17. }
  18. .clone-panel-tab .item {
  19. padding: 5px 10px;
  20. background: none;
  21. color: var(--color-text-light-2);
  22. }
  23. .clone-panel-tab .item.active {
  24. color: var(--color-text-dark);
  25. border-bottom: 3px solid currentcolor;
  26. }
  27. .clone-panel-tab + .divider {
  28. margin: -1px 0 0;
  29. }
  30. .clone-panel-list .item {
  31. margin: 5px 0;
  32. }