2020-10-19 22:01:06 +02:00
:root {
/* documented customizable variables */
--fonts-proportional: -apple-system, "BlinkMacSystemFont", system-ui, "Segoe UI", "Roboto", "Helvetica", "Arial";
--fonts-monospace: "SF Mono", "Consolas", "Menlo", "Liberation Mono", "Monaco", "Lucida Console", monospace;
--fonts-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla";
/* other variables */
--fonts-regular: var(--fonts-proportional), var(--fonts-emoji), sans-serif;
2020-10-24 21:15:29 +02:00
--border-radius: .28571429rem;
2020-10-31 04:52:10 +01:00
--color-primary: #4183c4;
--color-primary-dark-1: #3876b3;
--color-primary-dark-2: #31699f;
--color-primary-dark-3: #2b5c8b;
--color-primary-dark-4: #254f77;
--color-primary-dark-5: #193450;
--color-primary-dark-6: #0c1a28;
--color-primary-dark-7: #04080c;
--color-primary-light-1: #548fca;
--color-primary-light-2: #679cd0;
--color-primary-light-3: #7aa8d6;
--color-primary-light-4: #8db5dc;
--color-primary-light-5: #b3cde7;
--color-primary-light-6: #d9e6f3;
--color-primary-light-7: #f4f8fb;
2020-10-31 13:17:32 +01:00
--color-primary-alpha-10: #4183c419;
--color-primary-alpha-20: #4183c433;
--color-primary-alpha-30: #4183c44b;
--color-primary-alpha-40: #4183c466;
--color-primary-alpha-50: #4183c480;
--color-primary-alpha-60: #4183c499;
--color-primary-alpha-70: #4183c4b3;
--color-primary-alpha-80: #4183c4cc;
--color-primary-alpha-90: #4183c4e1;
2020-11-01 21:04:26 +01:00
--color-secondary: rgba(34, 36, 38, .15);
2020-10-31 04:52:10 +01:00
--color-body: #fff;
2020-10-19 22:01:06 +02:00
}
:root:lang(ja) {
--fonts-proportional: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Source Han Sans JP", "Noto Sans CJK JP", "Droid Sans Japanese", "Meiryo", "MS PGothic";
}
:root:lang(zh-CN) {
--fonts-proportional: "PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", "Heiti SC", "SimHei";
}
:root:lang(zh-TW) {
--fonts-proportional: "PingFang TC", "Hiragino Sans TC", "Source Han Sans TW", "Source Han Sans TC", "Noto Sans CJK TC", "Microsoft JhengHei", "Heiti TC", "PMingLiU";
}
:root:lang(zh-HK) {
--fonts-proportional: "PingFang HK", "Hiragino Sans TC", "Source Han Sans HK", "Source Han Sans TC", "Noto Sans CJK TC", "Microsoft JhengHei", "Heiti TC", "PMingLiU_HKSCS", "PMingLiU";
}
:root:lang(ko) {
--fonts-proportional: "Apple SD Gothic Neo", "NanumBarunGothic", "Malgun Gothic", "Gulim", "Dotum", "Nanum Gothic", "Source Han Sans KR", "Noto Sans CJK KR";
}
2019-03-18 12:49:01 +00:00
@font-face {
2020-10-19 22:01:06 +02:00
font-family: "Yu Gothic";
src: local("Yu Gothic Medium");
2020-08-25 21:48:53 +02:00
font-weight: 400;
2019-03-18 12:49:01 +00:00
}
@font-face {
2020-10-19 22:01:06 +02:00
font-family: "Yu Gothic";
src: local("Yu Gothic Bold");
2020-08-25 21:48:53 +02:00
font-weight: 700;
2019-03-18 12:49:01 +00:00
}
2020-04-28 14:05:39 -04:00
@font-face {
2020-10-19 22:01:06 +02:00
font-family: "Noto Color Emoji";
2020-08-25 21:48:53 +02:00
src:
2020-10-19 22:01:06 +02:00
local("Noto Color Emoji"),
local("Noto-Color-Emoji"),
url("../fonts/noto-color-emoji/NotoColorEmoji.ttf") format("truetype");
}
/* Most of these selectors override fomantic ui */
body,
textarea,
h1,
h2,
h3,
h4,
h5,
.markdown:not(code),
.ui.accordion .title:not(.ui),
.ui.button,
.ui.card > .content > .header.ui.card > .content > .header,
.ui.category.search > .results .category > .name,
.ui.form input:not([type]),
.ui.form input[type="date"],
.ui.form input[type="datetime-local"],
.ui.form input[type="email"],
.ui.form input[type="file"],
.ui.form input[type="number"],
.ui.form input[type="password"],
.ui.form input[type="search"],
.ui.form input[type="tel"],
.ui.form input[type="text"],
.ui.form input[type="time"],
.ui.form input[type="url"],
2020-11-05 02:51:17 +01:00
.ui.input textarea,
.ui.form textarea,
2020-10-19 22:01:06 +02:00
.ui.header,
.ui.items > .item > .content > .header,
.ui.list .list > .item .header,
.ui.list > .item .header,
.ui.menu,
.ui.message .header,
.ui.modal > .header,
.ui.popup > .header,
.ui.search > .results .result .title,
.ui.search > .results > .message .header,
.ui.input > input,
.ui.input input,
.ui.statistics .statistic > .value,
.ui.statistic > .value,
.ui.statistics .statistic > .label,
.ui.statistic > .label,
.ui.steps .step .title,
.ui.text.container,
.ui.language > .menu > .item {
font-family: var(--fonts-regular);
}
2019-03-18 12:49:01 +00:00
2020-11-06 18:16:21 +01:00
code,
kbd,
samp {
font-size: .9em; /* compensate for monospace fonts being usually slighty larger */
font-family: var(--fonts-monospace);
}
2015-03-20 03:20:05 -04:00
body {
2020-10-31 04:52:10 +01:00
background-color: var(--color-body);
2020-08-25 21:48:53 +02:00
overflow-y: auto;
display: flex;
flex-direction: column;
2015-07-24 04:50:05 +08:00
}
2019-03-18 12:49:01 +00:00
2015-07-24 04:50:05 +08:00
img {
2020-08-25 21:48:53 +02:00
border-radius: 3px;
2015-03-07 15:12:13 -05:00
}
2019-05-13 08:26:32 +02:00
2018-09-09 20:11:49 +02:00
table {
2020-08-25 21:48:53 +02:00
border-collapse: collapse;
2018-09-09 20:11:49 +02:00
}
2019-05-13 08:26:32 +02:00
2020-10-31 04:52:10 +01:00
/* firefox scroll bars */
* {
scrollbar-width: thin;
scrollbar-color: var(--color-primary) transparent;
}
/* webkit scrollbars */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 0 6px var(--color-primary);
border: 2px solid transparent;
border-radius: 5px !important;
}
::-webkit-scrollbar-thumb:window-inactive {
box-shadow: inset 0 0 0 6px var(--color-primary);
}
::-webkit-scrollbar-thumb:hover {
box-shadow: inset 0 0 0 6px var(--color-primary-dark-2);
}
::selection,
.CodeMirror-selected {
background: var(--color-primary-light-1) !important;
color: #fff !important;
}
2020-11-05 02:51:17 +01:00
::placeholder,
.CodeMirror-placeholder {
color: #aaa !important;
opacity: 1 !important;
}
2020-10-31 04:52:10 +01:00
a,
.ui.breadcrumb a {
color: var(--color-primary);
2020-08-25 21:48:53 +02:00
cursor: pointer;
2019-02-05 22:59:26 +01:00
}
2019-05-13 08:26:32 +02:00
2020-10-31 04:52:10 +01:00
a:hover,
.ui.breadcrumb a:hover {
color: var(--color-primary-dark-2);
}
2016-04-19 22:35:36 +02:00
.dont-break-out {
2020-08-25 21:48:53 +02:00
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-all;
hyphens: auto;
2016-04-19 22:35:36 +02:00
}
2019-05-13 08:26:32 +02:00
2015-03-07 15:12:13 -05:00
.full.height {
2020-08-25 21:48:53 +02:00
flex-grow: 1;
padding-bottom: 80px;
2015-03-07 15:12:13 -05:00
}
2019-05-13 08:26:32 +02:00
2015-03-07 15:12:13 -05:00
.following.bar {
2020-08-25 21:48:53 +02:00
z-index: 900;
left: 0;
margin: 0 !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.light {
background-color: white;
border-bottom: 1px solid #dddddd;
box-shadow: 0 2px 3px rgba(0, 0, 0, .04);
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.column .menu {
margin-top: 0;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.top.menu a.item.brand {
padding-left: 0;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.brand .ui.mini.image {
width: 30px;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.top.menu a.item:hover,
.top.menu .dropdown.item:hover,
.top.menu .dropdown.item.active {
background-color: transparent;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.top.menu a.item:hover {
color: rgba(0, 0, 0, .45);
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.top.menu .menu {
z-index: 900;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.fitted .svg {
margin-right: 0;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.svg {
margin-right: .75em;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.searchbox {
background-color: #f4f4f4 !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&:focus {
background-color: #e9e9e9 !important;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.text .svg {
width: 16px;
text-align: center;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
#navbar {
width: 100vw;
min-height: 52px;
padding: 0 .5rem;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
#navbar .brand {
margin: 0;
}
2019-05-13 08:26:32 +02:00
2020-10-31 13:17:32 +01:00
#navbar .dropdown .avatar {
margin-right: 0 !important;
}
2020-08-25 21:48:53 +02:00
@media only screen and (max-width: 767px) {
#navbar:not(.shown) > *:not(:first-child) {
display: none;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2015-07-24 04:50:05 +08:00
}
2015-11-13 12:05:48 -05:00
2017-12-31 01:47:52 +01:00
.right.stackable.menu {
2020-08-25 21:48:53 +02:00
// responsive fix: this makes sure that the right menu when the page
// is on mobile view will have elements stacked on top of each other.
// no, stackable won't work on right menus.
margin-left: auto;
display: flex;
align-items: inherit;
flex-direction: inherit;
2017-12-31 01:47:52 +01:00
}
2020-10-31 23:15:11 +01:00
.ui.dropdown:not(.labeled) > .dropdown.icon {
height: 14px;
vertical-align: bottom;
margin-bottom: -2px;
margin-left: .5rem;
}
.ui.form .field > .selection.dropdown > .dropdown.icon {
height: auto;
}
2015-07-24 04:50:05 +08:00
.ui {
2020-08-25 21:48:53 +02:00
&.left:not(.action) {
float: left;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.right:not(.action) {
float: right;
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.button,
&.menu .item {
user-select: auto;
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.container {
&.fluid {
&.padded {
padding: 0 10px;
}
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.form {
.ui.button {
font-weight: normal;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.floating.label {
z-index: 10;
}
2018-05-11 05:28:26 +02:00
2020-08-25 21:48:53 +02:00
&.transparent.label {
background-color: transparent;
}
2018-09-07 05:32:46 +03:00
2020-08-25 21:48:53 +02:00
&.nopadding {
padding: 0;
}
2019-10-31 00:06:10 -05:00
2020-08-25 21:48:53 +02:00
&.menu,
&.vertical.menu,
&.segment {
box-shadow: none;
}
2017-12-05 07:31:33 +01:00
2020-08-25 21:48:53 +02:00
/* Overide semantic selector '.ui.menu:not(.vertical) .item > .button' */
/* This fixes the commit graph button on the commits page */
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.menu:not(.vertical) .item > .button.compact {
padding: .58928571em 1.125em;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.menu:not(.vertical) .item > .button.small {
font-size: .92857143rem;
}
2017-12-03 00:16:35 +01:00
2020-08-25 21:48:53 +02:00
&.menu .ui.dropdown.item .menu .item {
width: 100%;
}
2019-04-11 16:09:41 -05:00
2020-08-25 21:48:53 +02:00
&.dropdown .menu > .item > .floating.label {
z-index: 11;
}
2018-05-11 05:28:26 +02:00
2020-08-25 21:48:53 +02:00
&.dropdown .menu .menu > .item > .floating.label {
z-index: 21;
}
2018-05-11 05:28:26 +02:00
2020-08-25 21:48:53 +02:00
&.dropdown .menu > .header {
font-size: .8em;
}
2019-12-17 16:34:11 -05:00
2020-08-25 21:48:53 +02:00
.text {
&.red {
color: #d95c5c !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
a {
color: #d95c5c !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&:hover {
color: #e67777 !important;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.blue {
2020-10-31 04:52:10 +01:00
color: var(--color-primary-dark-1) !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
a {
2020-10-31 04:52:10 +01:00
color: var(--color-primary) !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&:hover {
2020-10-31 04:52:10 +01:00
color: var(--color-primary-dark-2) !important;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.black {
color: #444444;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&:hover {
color: #000000;
}
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.grey {
color: #767676 !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
a {
color: #444444 !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&:hover {
color: #000000 !important;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.light.grey {
color: #888888 !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.green {
color: #6cc644 !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.purple {
color: #6e5494 !important;
}
2020-02-27 19:20:55 +00:00
2020-08-25 21:48:53 +02:00
&.yellow {
color: #fbbd08 !important;
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.orange {
color: #f2711c !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.gold {
color: #a1882b !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.left {
text-align: left !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.right {
text-align: right !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.small {
font-size: .75em;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.normal {
font-weight: normal;
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.bold {
font-weight: bold;
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.italic {
font-style: italic;
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
}
2019-10-31 00:06:10 -05:00
2020-08-25 21:48:53 +02:00
&.thin {
font-weight: normal;
}
2019-10-31 00:06:10 -05:00
2020-08-25 21:48:53 +02:00
&.middle {
vertical-align: middle;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
&.nopadding {
padding: 0;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
&.nomargin {
margin: 0;
2019-11-19 19:44:58 -03:00
}
2020-08-25 21:48:53 +02:00
}
2019-11-19 19:44:58 -03:00
2020-08-25 21:48:53 +02:00
.message {
text-align: center;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.message > ul {
margin-left: auto;
margin-right: auto;
display: table;
text-align: left;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.bottom.attached.message {
font-weight: bold;
text-align: left;
color: black;
.pull-right {
color: black;
2019-01-30 00:11:53 +01:00
}
2020-08-25 21:48:53 +02:00
& > span,
.pull-right > span {
color: #21ba45;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.header > i + .content {
padding-left: .75rem;
vertical-align: middle;
}
2019-05-13 08:26:32 +02:00
2020-10-04 22:54:22 +02:00
.error {
&.header {
background-color: #ffe8e6 !important;
border-color: #db2828;
}
&.segment {
border-color: #db2828;
}
}
2020-08-25 21:48:53 +02:00
.warning {
&.header {
background-color: #f9edbe !important;
border-color: #efc16b;
2017-10-27 07:30:54 +03:00
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.segment {
border-color: #efc16b;
}
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.info {
&.segment {
border: 1px solid #c5d5dd;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.top {
background-color: #e6f1f6 !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
h3,
h4 {
margin-top: 0;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
h3:last-child {
margin-top: 4px;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
> :last-child {
margin-bottom: 0;
}
}
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
.normal.header {
font-weight: normal;
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
.avatar.image,
.avatar.image img,
.avatar.image svg,
.avatar.images .image,
.avatar.images img,
.avatar.images svg {
border-radius: 3px;
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
.form {
.fake {
display: none !important;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
.sub.field {
margin-left: 25px;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
.sha.label {
2020-10-19 22:01:06 +02:00
font-family: var(--fonts-monospace);
2020-08-25 21:48:53 +02:00
font-size: 13px;
padding: 6px 10px 4px;
font-weight: normal;
margin: 0 6px;
}
2019-10-28 18:31:55 +00:00
2020-08-25 21:48:53 +02:00
.button.truncate {
display: inline-block;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: top;
white-space: nowrap;
margin-right: 6px;
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.status.buttons {
.svg {
margin-right: 4px;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2017-10-27 07:30:54 +03:00
2020-08-25 21:48:53 +02:00
&.inline.delete-button {
padding: 8px 15px;
font-weight: normal;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.background {
&.red {
background-color: #d95c5c !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.blue {
2020-10-31 04:52:10 +01:00
background-color: var(--color-primary) !important;
2020-08-25 21:48:53 +02:00
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.black {
background-color: #444444;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.grey {
background-color: #767676 !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.light.grey {
background-color: #888888 !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.green {
background-color: #6cc644 !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.purple {
background-color: #6e5494 !important;
}
2020-02-27 19:20:55 +00:00
2020-08-25 21:48:53 +02:00
&.yellow {
background-color: #fbbf09 !important;
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
&.orange {
background-color: #f2711c !important;
}
2019-07-07 22:14:12 -04:00
2020-08-25 21:48:53 +02:00
&.gold {
background-color: #a1882b !important;
2019-07-07 22:14:12 -04:00
}
2020-08-25 21:48:53 +02:00
}
2019-07-07 22:14:12 -04:00
2020-08-25 21:48:53 +02:00
.migrate {
color: #888888 !important;
opacity: .5;
a {
color: #444444 !important;
2019-09-16 11:03:22 +02:00
2020-08-25 21:48:53 +02:00
&:hover {
color: #000000 !important;
}
}
}
2019-09-16 11:03:22 +02:00
2020-08-25 21:48:53 +02:00
.border {
border: 1px solid;
&.red {
border-color: #d95c5c !important;
}
2019-09-16 11:03:22 +02:00
2020-08-25 21:48:53 +02:00
&.blue {
2020-10-31 04:52:10 +01:00
border-color: var(--color-primary) !important;
2020-08-25 21:48:53 +02:00
}
2019-09-16 11:03:22 +02:00
2020-08-25 21:48:53 +02:00
&.black {
border-color: #444444;
}
2019-09-16 11:03:22 +02:00
2020-08-25 21:48:53 +02:00
&.grey {
border-color: #767676 !important;
}
2019-09-16 11:03:22 +02:00
2020-08-25 21:48:53 +02:00
&.light.grey {
border-color: #888888 !important;
}
2019-09-16 11:03:22 +02:00
2020-08-25 21:48:53 +02:00
&.green {
border-color: #6cc644 !important;
}
2019-09-16 11:03:22 +02:00
2020-08-25 21:48:53 +02:00
&.purple {
border-color: #6e5494 !important;
}
2020-02-27 19:20:55 +00:00
2020-08-25 21:48:53 +02:00
&.yellow {
border-color: #fbbd08 !important;
2019-09-16 11:03:22 +02:00
}
2020-08-25 21:48:53 +02:00
&.orange {
border-color: #f2711c !important;
2017-10-27 07:30:54 +03:00
}
2019-04-08 08:31:54 +02:00
2020-08-25 21:48:53 +02:00
&.gold {
border-color: #a1882b !important;
}
}
.branch-tag-choice {
line-height: 20px;
}
&.pagination.menu {
@media only screen and (max-width: 767px) {
.item:not(.active):not(.navigation),
.item.navigation span.navigation_label {
display: none;
}
}
&.narrow .item {
padding-left: 8px;
padding-right: 8px;
min-width: 1em;
text-align: center;
.icon {
margin-right: 0;
}
2019-04-08 08:31:54 +02:00
}
2020-08-25 21:48:53 +02:00
}
2020-10-21 23:07:33 +02:00
/* modal svg icons, copied from fomantic except width and height */
&.icon.header svg {
width: 3em;
height: 3em;
float: none;
display: block;
line-height: 1;
padding: 0;
margin: 0 auto .5rem;
opacity: 1;
}
/* center text in fomantic modal dialogs */
&.modal > .content {
text-align: center;
}
2015-03-07 15:12:13 -05:00
}
2015-08-12 12:12:06 +02:00
2019-03-05 06:13:51 +03:00
.ui.floating.dropdown {
2020-08-25 21:48:53 +02:00
.overflow.menu {
.scrolling.menu.items {
border-radius: 0 !important;
box-shadow: none !important;
2020-11-01 21:04:26 +01:00
border-bottom: 1px solid var(--color-secondary);
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2015-08-26 12:39:32 +08:00
}
2018-09-27 22:58:38 +02:00
.user-menu > .item {
2020-08-25 21:48:53 +02:00
width: 100%;
border-radius: 0 !important;
2018-09-27 22:58:38 +02:00
}
2015-08-31 17:10:28 +09:00
.scrolling.menu {
2020-08-25 21:48:53 +02:00
.item.selected {
font-weight: 700 !important;
}
2015-08-31 17:10:28 +09:00
}
2015-03-07 15:12:13 -05:00
footer {
2020-08-25 21:48:53 +02:00
background-color: white;
border-top: 1px solid #d6d6d6;
width: 100%;
flex-basis: 40px;
color: #888888;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.container {
width: 100vw !important;
padding: 0 .5rem;
max-width: calc(100vw - 1rem) !important;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.fa {
width: 16px;
text-align: center;
2020-10-31 04:52:10 +01:00
color: var(--color-primary);
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
.links > * {
border-left: 1px solid #d6d6d6;
padding-left: 8px;
margin-left: 5px;
&:first-child {
border-left: 0;
}
2017-10-27 07:30:54 +03:00
}
2020-08-25 21:48:53 +02:00
}
2019-01-30 01:45:08 +01:00
2020-08-25 21:48:53 +02:00
.ui.language .menu {
max-height: 500px;
overflow-y: auto;
margin-bottom: 7px;
}
.ui {
&.left,
&.right {
line-height: 40px;
2019-01-30 01:45:08 +01:00
}
2020-08-25 21:48:53 +02:00
}
2015-03-07 15:12:13 -05:00
}
2015-07-08 01:09:03 +08:00
.hide {
2020-08-25 21:48:53 +02:00
display: none;
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.show-outdated {
display: none !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
&.hide-outdated {
display: none !important;
}
2015-07-08 01:09:03 +08:00
}
2019-05-13 08:26:32 +02:00
2015-07-08 19:47:56 +08:00
.center {
2020-08-25 21:48:53 +02:00
text-align: center;
2015-07-08 19:47:56 +08:00
}
2015-03-07 15:12:13 -05:00
.generate-img(16);
.generate-img(@n, @i: 1) when (@i =< @n) {
2020-08-25 21:48:53 +02:00
.img-@{i} {
width: (2px * @i) !important;
height: (2px * @i) !important;
}
2019-05-14 02:54:23 +02:00
2020-08-25 21:48:53 +02:00
.generate-img(@n, (@i + 1));
2015-03-20 03:20:05 -04:00
}
2017-12-31 01:47:52 +01:00
// Conditional display
@media only screen and (min-width: 768px) {
2020-08-25 21:48:53 +02:00
.mobile-only,
.ui.button.mobile-only {
display: none;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
// has the same behaviour of sr-only, hiding the content for
// non-screenreaders, but is shown on mobile devices.
.sr-mobile-only {
.sr-only();
}
2017-12-31 01:47:52 +01:00
}
2019-05-13 08:26:32 +02:00
2017-12-31 01:47:52 +01:00
@media only screen and (max-width: 767px) {
2020-08-25 21:48:53 +02:00
.not-mobile {
display: none;
}
2017-12-31 01:47:52 +01:00
}
2015-03-20 03:20:05 -04:00
// Accessibility
.sr-only {
2020-08-25 21:48:53 +02:00
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
2015-03-20 03:20:05 -04:00
}
2019-05-13 08:26:32 +02:00
2015-03-20 03:20:05 -04:00
.sr-only-focusable:active,
.sr-only-focusable:focus {
2020-08-25 21:48:53 +02:00
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
2015-08-26 02:05:08 +08:00
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
2020-08-25 21:48:53 +02:00
.ui.container {
width: 95%;
}
2015-12-07 21:20:54 +01:00
}
2016-01-31 14:19:02 -02:00
2017-03-15 22:39:38 +00:00
.ui.menu.new-menu {
2020-08-25 21:48:53 +02:00
justify-content: center !important;
padding-top: 15px !important;
margin-top: -15px !important;
margin-bottom: 15px !important;
background: #fafafa;
border-width: 1px !important;
2017-03-15 22:39:38 +00:00
}
2017-05-24 02:00:40 -04:00
@media only screen and (max-width: 1200px) {
2020-08-25 21:48:53 +02:00
.ui.menu.new-menu {
overflow-x: auto !important;
justify-content: left !important;
padding-bottom: 2px;
}
.ui.menu.new-menu::-webkit-scrollbar {
height: 8px;
display: none;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.ui.menu.new-menu:hover::-webkit-scrollbar {
display: block;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.ui.menu.new-menu::-webkit-scrollbar-track {
background: rgba(0, 0, 0, .01);
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.ui.menu.new-menu::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, .2);
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.ui.menu.new-menu:after {
position: absolute;
margin-top: -15px;
display: block;
background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 100%);
content: ' ';
right: 0;
height: 53px;
z-index: 1000;
width: 60px;
clear: none;
visibility: visible;
}
.ui.menu.new-menu a.item:last-child {
padding-right: 30px !important;
}
2017-05-24 02:00:40 -04:00
}
2017-08-17 03:31:34 +02:00
[v-cloak] {
2020-08-25 21:48:53 +02:00
display: none !important;
2017-08-17 03:31:34 +02:00
}
.repos-search {
2020-08-25 21:48:53 +02:00
padding-bottom: 0 !important;
2017-08-17 03:31:34 +02:00
}
.repos-filter {
2020-08-25 21:48:53 +02:00
margin-top: 0 !important;
border-bottom-width: 0 !important;
margin-bottom: 2px !important;
2017-10-15 02:17:39 +03:00
}
2018-10-23 04:57:42 +02:00
2019-02-06 08:09:13 +01:00
#user-heatmap {
2020-08-25 21:48:53 +02:00
width: 107%; // Fixes newest contributions not showing
text-align: center;
2018-10-23 04:57:42 +02:00
2020-08-25 21:48:53 +02:00
svg:not(:root) {
overflow: inherit;
padding: 0 !important;
}
2018-10-23 04:57:42 +02:00
2020-08-25 21:48:53 +02:00
@media only screen and (max-width: 1200px) {
& {
display: none;
2018-10-23 04:57:42 +02:00
}
2020-08-25 21:48:53 +02:00
}
2019-07-18 19:04:28 +02:00
2020-08-25 21:48:53 +02:00
.total-contributions {
text-align: left;
font-weight: 500;
margin-top: 0;
}
2018-10-23 04:57:42 +02:00
}
2018-11-27 11:36:54 +02:00
.heatmap-color-0 {
2020-08-25 21:48:53 +02:00
background-color: #f4f4f4;
2018-11-27 11:36:54 +02:00
}
.heatmap-color-1 {
2020-08-25 21:48:53 +02:00
background-color: #d8efbf;
2018-11-27 11:36:54 +02:00
}
.heatmap-color-2 {
2020-08-25 21:48:53 +02:00
background-color: #9fdb81;
2018-11-27 11:36:54 +02:00
}
.heatmap-color-3 {
2020-08-25 21:48:53 +02:00
background-color: #66c74b;
2018-11-27 11:36:54 +02:00
}
.heatmap-color-4 {
2020-08-25 21:48:53 +02:00
background-color: #609926;
2018-11-27 11:36:54 +02:00
}
.heatmap-color-5 {
2020-08-25 21:48:53 +02:00
background-color: #025900;
2018-11-27 11:36:54 +02:00
}
2019-01-23 19:58:38 +01:00
2020-01-20 12:07:30 +02:00
.activity-bar-graph {
2020-08-25 21:48:53 +02:00
background-color: #6cc644;
color: #000000;
2020-01-20 12:07:30 +02:00
}
.activity-bar-graph-alt {
2020-08-25 21:48:53 +02:00
color: #000000;
2020-01-20 12:07:30 +02:00
}
2019-05-13 08:26:32 +02:00
.archived-icon {
2020-08-25 21:48:53 +02:00
color: lighten(#000000, 70%) !important;
2019-01-23 19:58:38 +01:00
}
2019-03-08 17:42:50 +01:00
.oauth2-authorize-application-box {
2020-08-25 21:48:53 +02:00
margin-top: 3em !important;
2019-03-08 17:42:50 +01:00
}
2019-04-29 20:49:59 +02:00
2019-07-12 19:44:28 +02:00
/* multiple radio or checkboxes as inline element */
.inline-grouped-list {
2020-08-25 21:48:53 +02:00
display: inline-block;
vertical-align: top;
2019-07-12 19:44:28 +02:00
2020-08-25 21:48:53 +02:00
> .ui {
display: block;
margin-top: 5px;
margin-bottom: 10px;
2019-07-12 19:44:28 +02:00
2020-08-25 21:48:53 +02:00
&:first-child {
margin-top: 1px;
2019-07-12 19:44:28 +02:00
}
2020-08-25 21:48:53 +02:00
}
2019-07-12 19:44:28 +02:00
}
2019-08-08 16:46:03 +02:00
2019-10-16 14:42:42 +01:00
i.icons .icon:first-child {
2020-08-25 21:48:53 +02:00
margin-right: 0;
2019-10-16 14:42:42 +01:00
}
i.icon.centerlock {
2020-08-25 21:48:53 +02:00
top: 1em;
2019-10-16 14:42:42 +01:00
}
2020-04-04 15:39:57 -04:00
.ui.label {
2020-08-25 21:48:53 +02:00
padding: .3em .5em;
2020-04-04 15:39:57 -04:00
}
2019-10-16 14:42:42 +01:00
.ui.label > .detail .icons {
2020-08-25 21:48:53 +02:00
margin-right: .25em;
2019-10-16 14:42:42 +01:00
}
.ui.label > .detail .icons .icon {
2020-08-25 21:48:53 +02:00
margin-right: 0;
2019-10-16 14:42:42 +01:00
}
2019-08-08 16:46:03 +02:00
.lines-num {
2020-08-25 21:48:53 +02:00
padding-left: 10px;
padding-right: 10px;
text-align: right !important;
color: rgba(27, 31, 35, .3);
width: 1%;
user-select: none;
2020-10-19 22:01:06 +02:00
font-family: var(--fonts-monospace);
2020-08-25 21:48:53 +02:00
span {
&.bottom-line {
&:after {
border-bottom: 1px solid #eaecef;
}
}
2020-06-15 20:39:39 +02:00
2020-08-25 21:48:53 +02:00
&:after {
content: attr(data-line-number);
line-height: 20px !important;
padding: 0 10px;
cursor: pointer;
display: block;
2019-08-08 16:46:03 +02:00
}
2020-08-25 21:48:53 +02:00
}
2019-08-08 16:46:03 +02:00
}
2020-06-30 17:34:03 -04:00
.lines-type-marker {
2020-08-25 21:48:53 +02:00
vertical-align: top;
2020-06-30 17:34:03 -04:00
}
2019-08-08 16:46:03 +02:00
.lines-num,
.lines-code {
2020-08-25 21:48:53 +02:00
padding-top: 0;
padding-bottom: 0;
vertical-align: top;
2019-08-08 16:46:03 +02:00
2020-08-25 21:48:53 +02:00
pre,
ol {
background-color: inherit;
margin: 0;
padding: 0 !important;
2019-08-08 16:46:03 +02:00
2020-08-25 21:48:53 +02:00
li {
display: block;
width: calc(100% - 1ch);
padding-left: 1ch;
2019-08-08 16:46:03 +02:00
}
2020-08-25 21:48:53 +02:00
}
2019-08-08 16:46:03 +02:00
}
2020-10-31 23:15:11 +01:00
.lines-code {
padding-left: 5px;
}
2020-10-04 22:54:22 +02:00
.lines-code.active,
.lines-code .active {
background: #fffbdd !important;
}
2020-06-30 17:34:03 -04:00
.blame .lines-num {
2020-08-25 21:48:53 +02:00
padding: 0 !important;
background-color: #f5f5f5;
2020-06-30 17:34:03 -04:00
}
.blame .lines-code {
2020-08-25 21:48:53 +02:00
padding: 0 !important;
2020-06-30 17:34:03 -04:00
}
2020-11-04 08:14:07 +01:00
.code-inner {
font: 12px var(--fonts-monospace);
white-space: pre-wrap;
word-break: break-all;
overflow-wrap: break-word;
word-wrap: break-word;
}
.blame .code-inner {
white-space: pre;
}
2019-08-08 16:46:03 +02:00
.lines-commit {
2020-08-25 21:48:53 +02:00
vertical-align: top;
color: #999999;
padding: 0 !important;
background: #f5f5f5;
width: 1%;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
.blame-info {
width: 350px;
max-width: 350px;
display: block;
2019-08-08 16:46:03 +02:00
user-select: none;
2020-08-25 21:48:53 +02:00
padding: 0 0 0 10px;
2019-08-08 16:46:03 +02:00
2020-08-25 21:48:53 +02:00
.blame-data {
display: flex;
2020-10-19 22:01:06 +02:00
font-family: var(--fonts-regular);
2019-08-08 16:46:03 +02:00
2020-08-25 21:48:53 +02:00
.blame-message {
flex-grow: 2;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
line-height: 20px;
}
.blame-time,
.blame-avatar {
flex-shrink: 0;
}
2019-08-08 16:46:03 +02:00
}
2020-08-25 21:48:53 +02:00
}
.ui.avatar.image {
height: 18px;
width: 18px;
}
2019-08-08 16:46:03 +02:00
}
.lines-code,
.lines-commit {
2020-08-25 21:48:53 +02:00
.bottom-line {
border-bottom: 1px solid #eaecef;
}
2019-08-08 16:46:03 +02:00
}
.code-view {
2020-08-25 21:48:53 +02:00
overflow: auto;
overflow-x: auto;
overflow-y: hidden;
2019-08-08 16:46:03 +02:00
2020-08-25 21:48:53 +02:00
&.has-context-menu {
overflow: visible;
overflow-x: visible;
overflow-y: visible;
}
2019-12-02 17:03:30 -06:00
2020-08-25 21:48:53 +02:00
*:not(.fa):not(.svg):not(.icon) {
font-size: 12px;
2020-10-19 22:01:06 +02:00
font-family: var(--fonts-monospace);
2020-08-25 21:48:53 +02:00
line-height: 20px;
}
2019-08-08 16:46:03 +02:00
2020-08-25 21:48:53 +02:00
table {
width: 100%;
}
2019-08-08 16:46:03 +02:00
}
2019-12-12 13:18:07 +00:00
.octicon-tiny {
2020-08-25 21:48:53 +02:00
font-size: .85714286rem;
2019-12-12 13:18:07 +00:00
}
2019-12-31 23:06:15 -06:00
2020-10-31 04:52:10 +01:00
.ui.blue.button,
2020-11-01 21:04:26 +01:00
.ui.blue.buttons .button,
.ui.primary.button,
.ui.primary.buttons .button {
2020-10-31 04:52:10 +01:00
background-color: var(--color-primary) !important;
}
.ui.blue.button:hover,
2020-11-01 21:04:26 +01:00
.ui.blue.buttons .button:hover,
.ui.primary.button:hover,
.ui.primary.buttons .button:hover {
2020-10-31 04:52:10 +01:00
background-color: var(--color-primary-dark-2) !important;
}
.ui.blue.button:focus,
2020-11-01 21:04:26 +01:00
.ui.blue.buttons .button:focus,
.ui.primary.button:focus,
.ui.primary.buttons .button:focus {
2020-10-31 04:52:10 +01:00
background-color: var(--color-primary-dark-3) !important;
}
2019-12-31 23:06:15 -06:00
.ui.basic.blue.button,
2020-11-01 21:04:26 +01:00
.ui.basic.blue.buttons .button,
.ui.basic.primary.button,
.ui.basic.primary.buttons .button {
2020-10-31 04:52:10 +01:00
box-shadow: inset 0 0 0 1px var(--color-primary) !important;
color: #fff !important;
}
.ui.basic.blue.button:hover,
2020-11-01 21:04:26 +01:00
.ui.basic.blue.buttons .button:hover,
.ui.basic.primary.button:hover,
.ui.basic.primary.buttons .button:hover {
2020-10-31 04:52:10 +01:00
box-shadow: inset 0 0 0 1px var(--color-primary-dark-2) !important;
}
.ui.basic.blue.button:focus,
2020-11-01 21:04:26 +01:00
.ui.basic.blue.buttons .button:focus,
.ui.basic.primary.button:focus,
.ui.basic.primary.buttons .button:focus {
2020-10-31 04:52:10 +01:00
box-shadow: inset 0 0 0 1px var(--color-primary-dark-3) !important;
}
.ui.blue.label,
2020-11-01 21:04:26 +01:00
.ui.blue.labels .label,
.ui.primary.label,
.ui.primary.labels .label {
2020-10-31 04:52:10 +01:00
background-color: var(--color-primary) !important;
border-color: var(--color-primary-dark-2) !important;
2019-12-31 23:06:15 -06:00
}
2020-01-04 22:56:06 -06:00
2020-10-31 13:17:32 +01:00
.ui.basic.labels .blue.label,
2020-11-01 21:04:26 +01:00
.ui.ui.ui.basic.blue.label,
.ui.basic.labels .primary.label,
.ui.ui.ui.basic.primary.label {
2020-10-31 13:17:32 +01:00
background: transparent;
border-color: var(--color-primary);
color: var(--color-primary);
}
2020-01-04 22:56:06 -06:00
.ui.label > img {
2020-08-25 21:48:53 +02:00
width: auto !important;
vertical-align: middle;
height: 2.1666em !important;
2020-01-04 22:56:06 -06:00
}
2020-01-19 22:39:21 -06:00
2020-02-11 11:02:41 -06:00
.svg {
2020-08-25 21:48:53 +02:00
span.green & {
color: #21ba45;
}
span.red & {
color: #db2828;
}
span.purple & {
color: #a333c8;
}
2020-01-19 22:39:21 -06:00
}
.ui.popup .ui.label {
2020-08-25 21:48:53 +02:00
margin-bottom: .4em;
2020-01-19 22:39:21 -06:00
}
2020-02-11 11:34:17 +02:00
.color-icon {
2020-08-25 21:48:53 +02:00
margin-right: .5em;
margin-left: .5em;
display: inline-block;
border: 0 solid rgba(0, 0, 0, .2);
border-radius: 100%;
height: 14px;
width: 14px;
position: relative;
top: 2px;
2020-02-11 11:34:17 +02:00
}
2020-02-11 11:02:41 -06:00
2020-02-20 21:53:55 +02:00
.ui.label > .color-icon {
2020-08-25 21:48:53 +02:00
margin-left: 0;
2020-02-20 21:53:55 +02:00
}
2020-02-11 11:02:41 -06:00
.invisible {
2020-08-25 21:48:53 +02:00
visibility: hidden;
2020-02-11 11:02:41 -06:00
}
2020-02-12 04:38:32 +01:00
/* https://github.com/go-gitea/gitea/issues/10210 */
2020-05-18 12:27:09 +02:00
.ui.attached.segment ~ .ui.top.attached.header {
2020-08-25 21:48:53 +02:00
margin-top: 1rem;
2020-02-12 04:38:32 +01:00
}
2020-04-04 23:29:15 +02:00
2020-06-25 00:23:05 +02:00
table th[data-sortt-asc],
table th[data-sortt-desc] {
2020-08-25 21:48:53 +02:00
&:hover {
background: rgba(0, 0, 0, .1) !important;
cursor: pointer !important;
}
.svg {
margin-left: .25rem;
}
2020-06-25 00:23:05 +02:00
}
2020-04-04 23:29:15 +02:00
/* limit width of all direct dropdown menu children */
/* https://github.com/go-gitea/gitea/pull/10835 */
2020-06-18 19:16:26 +02:00
.dropdown:not(.selection) > .menu:not(.review-box) > *:not(.header) {
2020-08-25 21:48:53 +02:00
max-width: 300px;
overflow-x: hidden;
text-overflow: ellipsis;
2020-04-04 23:29:15 +02:00
}
2020-04-13 22:00:32 +02:00
2020-04-30 02:59:47 +01:00
.dropdown:not(.selection) > .menu.review-box > * {
2020-08-25 21:48:53 +02:00
@media only screen and (max-height: 700px) {
.CodeMirror,
.CodeMirror-scroll {
min-height: 100px;
2020-04-30 02:59:47 +01:00
}
2020-08-25 21:48:53 +02:00
}
2020-04-30 02:59:47 +01:00
}
2020-10-24 21:15:29 +02:00
.ui.dropdown .menu .item {
border-radius: 0;
}
.ui.dropdown .menu .item:first-of-type {
border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.ui.dropdown .menu .item:last-of-type {
border-radius: 0 0 var(--border-radius) var(--border-radius);
}
2020-04-18 00:35:12 +08:00
.text-label {
2020-08-25 21:48:53 +02:00
display: inline-flex !important;
align-items: center !important;
2020-04-13 22:00:32 +02:00
}
2020-04-18 00:35:12 +08:00
.text-label .color-icon {
2020-08-25 21:48:53 +02:00
position: static !important;
2020-04-13 22:00:32 +02:00
}
2020-04-28 14:05:39 -04:00
.emoji,
.reaction {
2020-08-25 21:48:53 +02:00
font-size: 1.25em;
line-height: 1;
font-style: normal !important;
font-weight: normal !important;
vertical-align: -.075em;
2020-05-01 13:58:45 -04:00
}
2020-04-28 14:05:39 -04:00
.emoji img,
.reaction img {
2020-08-25 21:48:53 +02:00
border-width: 0 !important;
margin: 0 !important;
width: 1em !important;
height: 1em !important;
vertical-align: -.15em;
2020-04-28 14:05:39 -04:00
}
2020-05-20 22:27:14 +02:00
/* https://github.com/go-gitea/gitea/pull/11486 */
.ui.sub.header {
2020-08-25 21:48:53 +02:00
text-transform: none;
2020-05-20 22:27:14 +02:00
}
2020-06-22 18:44:06 +02:00
.ui.tabular.menu {
2020-08-25 21:48:53 +02:00
.item {
padding: 11px 12px;
color: rgba(0, 0, 0, .5);
}
2020-06-22 18:44:06 +02:00
2020-08-25 21:48:53 +02:00
.item:hover {
color: rgba(0, 0, 0, .8);
}
2020-06-22 18:44:06 +02:00
2020-08-25 21:48:53 +02:00
.item.active {
color: rgba(0, 0, 0, .9);
margin-top: 1px; /* offset fomantic's margin-bottom: -1px */
}
2020-06-22 18:44:06 +02:00
}
.ui.secondary.pointing.menu .item {
2020-08-25 21:48:53 +02:00
padding: 12px;
2020-06-22 18:44:06 +02:00
}
2020-06-26 02:07:15 +02:00
2020-11-01 21:04:26 +01:00
.ui.header .ui.label {
margin-left: .25rem;
}
2020-06-26 02:07:15 +02:00
.ui.header > .ui.label.compact {
2020-08-25 21:48:53 +02:00
margin-top: inherit;
2020-06-26 02:07:15 +02:00
}
2020-10-21 00:50:10 +01:00
.flash-error details code {
display: block;
text-align: left;
}