2019-03-18 18:19:01 +05:30
@font-face {
font-family: 'Lato';
src: url('../vendor/assets/lato-fonts/lato-regular.eot');
src: url('../vendor/assets/lato-fonts/lato-regular.eot?#iefix') format('embedded-opentype'), url('../vendor/assets/lato-fonts/lato-regular.woff2') format('woff2'), url('../vendor/assets/lato-fonts/lato-regular.woff') format('woff'), url('../vendor/assets/lato-fonts/lato-regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Lato';
src: url('../vendor/assets/lato-fonts/lato-italic.eot');
src: url('../vendor/assets/lato-fonts/lato-italic.eot?#iefix') format('embedded-opentype'), url('../vendor/assets/lato-fonts/lato-italic.woff2') format('woff2'), url('../vendor/assets/lato-fonts/lato-italic.woff') format('woff'), url('../vendor/assets/lato-fonts/lato-italic.ttf') format('truetype');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Lato';
src: url('../vendor/assets/lato-fonts/lato-bold.eot');
src: url('../vendor/assets/lato-fonts/lato-bold.eot?#iefix') format('embedded-opentype'), url('../vendor/assets/lato-fonts/lato-bold.woff2') format('woff2'), url('../vendor/assets/lato-fonts/lato-bold.woff') format('woff'), url('../vendor/assets/lato-fonts/lato-bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Lato';
src: url('../vendor/assets/lato-fonts/lato-bolditalic.eot');
src: url('../vendor/assets/lato-fonts/lato-bolditalic.eot?#iefix') format('embedded-opentype'), url('../vendor/assets/lato-fonts/lato-bolditalic.woff2') format('woff2'), url('../vendor/assets/lato-fonts/lato-bolditalic.woff') format('woff'), url('../vendor/assets/lato-fonts/lato-bolditalic.ttf') format('truetype');
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: 'Yu Gothic';
src: local('Yu Gothic Medium');
font-weight: 400;
}
@font-face {
font-family: 'Yu Gothic';
src: local('Yu Gothic Bold');
font-weight: 700;
}
@default-fonts: -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Roboto, Helvetica, Arial;
@monospaced-fonts: 'SF Mono', Consolas, Menlo, 'Liberation Mono', Monaco, 'Lucida Console';
.override-fonts(@fonts) {
textarea {
font-family: @fonts, sans-serif;
}
.markdown:not(code) {
font-family: @fonts, sans-serif;
}
/* We're going to just override the semantic fonts here */
2019-05-14 06:24:23 +05:30
h1,
h2,
h3,
h4,
h5 {
2019-03-18 18:19:01 +05:30
font-family: Lato, @fonts, sans-serif;
}
2019-05-14 06:24:23 +05:30
.home .hero h1,
.home .hero h2 {
2019-03-18 18:19:01 +05:30
font-family: 'PT Sans Narrow', Lato, @fonts, sans-serif;
}
.ui.accordion .title:not(.ui),
.ui.button,
.ui.card > .content > .header.ui.card > .content > .header,
.ui.category.search > .results .category > .name,
2019-05-14 06:24:23 +05:30
.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"],
2019-03-18 18:19:01 +05:30
.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,
body,
2019-05-14 06:24:23 +05:30
.ui.input > input,
.ui.input input,
2019-03-18 18:19:01 +05:30
.ui.statistics .statistic > .value,
.ui.statistic > .value,
.ui.statistics .statistic > .label,
.ui.statistic > .label,
.ui.steps .step .title,
.ui.text.container,
2019-05-13 11:56:32 +05:30
.ui.language > .menu > .item& {
2019-03-18 18:19:01 +05:30
font-family: Lato, @fonts, sans-serif;
}
}
.override-fonts(@default-fonts);
2015-03-20 12:50:05 +05:30
body {
2019-05-14 06:24:23 +05:30
background-color: #ffffff;
2019-02-25 16:07:04 +05:30
overflow-y: auto;
2017-10-27 10:00:54 +05:30
-webkit-font-smoothing: antialiased;
2019-02-25 02:32:45 +05:30
display: flex;
flex-direction: column;
2015-07-24 02:20:05 +05:30
}
2019-03-18 18:19:01 +05:30
@ja-fonts: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Source Han Sans JP', 'Noto Sans CJK JP', 'Droid Sans Japanese', 'Meiryo', 'MS PGothic';
:lang(ja) {
.override-fonts(@default-fonts, @ja-fonts;);
}
@zh-CN-fonts: 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans CN', 'Source Han Sans SC', 'Noto Sans CJK SC', 'Microsoft YaHei', 'Heiti SC', SimHei;
:lang(zh-CN) {
.override-fonts(@default-fonts, @zh-CN-fonts;);
}
@zh-TW-fonts: 'PingFang TC', 'Hiragino Sans TC', 'Source Han Sans TW', 'Source Han Sans TC', 'Noto Sans CJK TC', 'Microsoft JhengHei', 'Heiti TC', PMingLiU;
:lang(zh-TW) {
.override-fonts(@default-fonts, @zh-TW-fonts;);
}
@zh-HK-fonts: 'PingFang HK', 'Hiragino Sans TC', 'Source Han Sans HK', 'Source Han Sans TC', 'Noto Sans CJK TC', 'Microsoft JhengHei', 'Heiti TC', PMingLiU_HKSCS, PMingLiU;
:lang(zh-HK) {
.override-fonts(@default-fonts, @zh-HK-fonts;);
}
@ko-fonts: 'Apple SD Gothic Neo', 'NanumBarunGothic', 'Malgun Gothic', 'Gulim', 'Dotum', 'Nanum Gothic', 'Source Han Sans KR', 'Noto Sans CJK KR';
:lang(ko) {
.override-fonts(@default-fonts, @ko-fonts;);
}
2015-07-24 02:20:05 +05:30
img {
2017-10-27 10:00:54 +05:30
border-radius: 3px;
2015-03-08 01:42:13 +05:30
}
2019-05-13 11:56:32 +05:30
2018-09-09 23:41:49 +05:30
table {
border-collapse: collapse;
}
2019-05-13 11:56:32 +05:30
2019-02-06 03:29:26 +05:30
a {
cursor: pointer;
}
2019-05-13 11:56:32 +05:30
2017-12-14 23:56:59 +05:30
.rounded {
2019-05-14 06:24:23 +05:30
border-radius: 0.28571429rem !important;
2017-12-14 23:56:59 +05:30
}
2019-05-13 11:56:32 +05:30
2019-07-01 07:26:26 +05:30
.wrap {
word-wrap: break-word;
word-break: break-all;
}
2019-05-14 06:24:23 +05:30
pre,
2019-06-27 03:05:07 +05:30
code,
.mono {
2019-03-18 18:19:01 +05:30
font: 12px @monospaced-fonts, monospace;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.raw {
padding: 7px 12px;
margin: 10px 0;
background-color: #f8f8f8;
2019-05-14 06:24:23 +05:30
border: 1px solid #dddddd;
2017-10-27 10:00:54 +05:30
border-radius: 3px;
font-size: 13px;
line-height: 1.5;
overflow: auto;
}
2019-05-13 11:56:32 +05:30
2019-02-15 12:53:20 +05:30
&.wrap {
2019-04-12 01:49:43 +05:30
white-space: pre-wrap;
2019-02-15 12:53:20 +05:30
word-break: break-all;
overflow-wrap: break-word;
word-wrap: break-word;
}
2015-08-27 20:36:14 +05:30
}
2019-05-13 11:56:32 +05:30
2016-04-20 02:05:36 +05:30
.dont-break-out {
2017-10-27 10:00:54 +05:30
overflow-wrap: break-word;
2019-02-15 12:53:20 +05:30
word-wrap: break-word;
2017-10-27 10:00:54 +05:30
word-break: break-all;
hyphens: auto;
2016-04-20 02:05:36 +05:30
}
2019-05-13 11:56:32 +05:30
2015-03-08 01:42:13 +05:30
.full.height {
2019-02-25 02:32:45 +05:30
flex-grow: 1;
padding-bottom: 80px;
2015-03-08 01:42:13 +05:30
}
2019-05-13 11:56:32 +05:30
2015-03-08 01:42:13 +05:30
.following.bar {
2017-10-27 10:00:54 +05:30
z-index: 900;
left: 0;
2019-04-12 01:49:43 +05:30
margin: 0 !important;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.light {
background-color: white;
2019-05-14 06:24:23 +05:30
border-bottom: 1px solid #dddddd;
2017-10-27 10:00:54 +05:30
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.column .menu {
margin-top: 0;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.top.menu a.item.brand {
padding-left: 0;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.brand .ui.mini.image {
width: 30px;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.top.menu a.item:hover,
.top.menu .dropdown.item:hover,
.top.menu .dropdown.item.active {
background-color: transparent;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.top.menu a.item:hover {
2019-05-14 06:24:23 +05:30
color: rgba(0, 0, 0, 0.45);
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.top.menu .menu {
z-index: 900;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.octicon {
2017-12-31 06:17:52 +05:30
&.fitted {
margin-right: 0;
}
2019-05-13 11:56:32 +05:30
2019-05-14 06:24:23 +05:30
margin-right: 0.75em;
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.searchbox {
2019-05-14 06:24:23 +05:30
background-color: #f4f4f4 !important;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&:focus {
2019-05-14 06:24:23 +05:30
background-color: #e9e9e9 !important;
2017-10-27 10:00:54 +05:30
}
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.text .octicon {
width: 16px;
text-align: center;
}
2019-05-13 11:56:32 +05:30
2019-02-08 12:49:21 +05:30
#navbar {
width: 100vw;
2019-04-12 01:49:43 +05:30
min-height: 52px;
2019-05-14 06:24:23 +05:30
padding: 0 0.5rem;
2019-02-08 12:49:21 +05:30
}
2019-05-13 11:56:32 +05:30
2019-02-08 12:49:21 +05:30
#navbar .brand {
2019-02-09 20:37:38 +05:30
margin: 0;
2019-02-08 12:49:21 +05:30
}
2019-05-13 11:56:32 +05:30
2017-12-31 06:17:52 +05:30
@media only screen and (max-width: 767px) {
#navbar:not(.shown) > *:not(:first-child) {
display: none;
2017-10-27 10:00:54 +05:30
}
}
2015-07-24 02:20:05 +05:30
}
2015-11-13 22:35:48 +05:30
2017-12-31 06:17:52 +05:30
.right.stackable.menu {
// 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;
}
2015-07-24 02:20:05 +05:30
.ui {
2017-10-27 10:00:54 +05:30
&.left {
float: left;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.right {
float: right;
}
2019-05-14 06:24:23 +05:30
&.button,
&.menu .item {
2017-10-27 10:00:54 +05:30
user-select: auto;
}
&.container {
&.fluid {
&.padded {
padding: 0 10px 0 10px;
}
}
}
&.form {
.ui.button {
font-weight: normal;
}
}
2018-05-11 08:58:26 +05:30
&.floating.label {
z-index: 10;
}
2018-09-07 08:02:46 +05:30
&.transparent.label {
background-color: transparent;
}
2017-12-05 12:01:33 +05:30
&.menu,
&.vertical.menu,
&.segment {
box-shadow: none;
}
2017-12-07 06:56:12 +05:30
/* Overide semantic selector '.ui.menu:not(.vertical) .item > .button' */
/* This fixes the commit graph button on the commits page */
2019-05-13 11:56:32 +05:30
2017-12-07 06:56:12 +05:30
.menu:not(.vertical) .item > .button.compact {
2019-05-14 06:24:23 +05:30
padding: 0.58928571em 1.125em;
2017-12-07 06:56:12 +05:30
}
2019-05-13 11:56:32 +05:30
2017-12-07 06:56:12 +05:30
.menu:not(.vertical) .item > .button.small {
2019-05-14 06:24:23 +05:30
font-size: 0.92857143rem;
2017-12-05 12:01:33 +05:30
}
2017-12-03 04:46:35 +05:30
2019-04-12 02:39:41 +05:30
&.menu .ui.dropdown.item .menu .item {
margin-right: auto;
}
2019-05-13 11:56:32 +05:30
&.dropdown .menu > .item > .floating.label {
2018-05-11 08:58:26 +05:30
z-index: 11;
}
2019-05-13 11:56:32 +05:30
&.dropdown .menu .menu > .item > .floating.label {
2018-05-11 08:58:26 +05:30
z-index: 21;
}
2017-10-27 10:00:54 +05:30
.text {
&.red {
color: #d95c5c !important;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
a {
color: #d95c5c !important;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&:hover {
2019-05-14 06:24:23 +05:30
color: #e67777 !important;
2017-10-27 10:00:54 +05:30
}
}
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.blue {
color: #428bca !important;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
a {
2019-05-14 06:24:23 +05:30
color: #1155cc !important;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&:hover {
color: #428bca !important;
}
}
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.black {
2019-05-14 06:24:23 +05:30
color: #444444;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&:hover {
2019-05-14 06:24:23 +05:30
color: #000000;
2017-10-27 10:00:54 +05:30
}
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.grey {
color: #767676 !important;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
a {
2019-05-14 06:24:23 +05:30
color: #444444 !important;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&:hover {
2019-05-14 06:24:23 +05:30
color: #000000 !important;
2017-10-27 10:00:54 +05:30
}
}
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.light.grey {
2019-05-14 06:24:23 +05:30
color: #888888 !important;
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.green {
color: #6cc644 !important;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.purple {
color: #6e5494 !important;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.yellow {
2019-05-14 06:24:23 +05:30
color: #fbbd08 !important;
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.gold {
color: #a1882b !important;
}
&.left {
text-align: left !important;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.right {
text-align: right !important;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.small {
font-size: 0.75em;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.normal {
font-weight: normal;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.bold {
font-weight: bold;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.italic {
font-style: italic;
}
&.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
}
&.thin {
font-weight: normal;
}
&.middle {
vertical-align: middle;
}
}
.message {
text-align: center;
}
2019-01-30 04:41:53 +05:30
&.bottom.attached.message {
font-weight: bold;
text-align: left;
color: black;
2019-05-13 11:56:32 +05:30
2019-01-30 04:41:53 +05:30
.pull-right {
color: black;
}
2019-05-13 11:56:32 +05:30
2019-05-14 06:24:23 +05:30
& > span,
.pull-right > span {
2019-05-13 11:56:32 +05:30
color: #21ba45;
2019-01-30 04:41:53 +05:30
}
}
2017-10-27 10:00:54 +05:30
.header > i + .content {
padding-left: 0.75rem;
vertical-align: middle;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.warning {
&.header {
2019-05-14 06:24:23 +05:30
background-color: #f9edbe !important;
border-color: #efc16b;
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.segment {
2019-05-14 06:24:23 +05:30
border-color: #efc16b;
2017-10-27 10:00:54 +05:30
}
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.info {
&.segment {
border: 1px solid #c5d5dd;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.top {
background-color: #e6f1f6 !important;
2019-05-13 11:56:32 +05:30
2019-05-14 06:24:23 +05:30
h3,
h4 {
2017-10-27 10:00:54 +05:30
margin-top: 0;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
h3:last-child {
margin-top: 4px;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
> :last-child {
margin-bottom: 0;
}
}
}
}
.normal.header {
font-weight: normal;
}
.avatar.image {
border-radius: 3px;
}
.form {
.fake {
display: none !important;
}
.sub.field {
margin-left: 25px;
}
}
.sha.label {
2019-03-18 18:19:01 +05:30
font-family: @monospaced-fonts, monospace;
2017-10-27 10:00:54 +05:30
font-size: 13px;
padding: 6px 10px 4px 10px;
font-weight: normal;
margin: 0 6px;
}
&.status.buttons {
.octicon {
margin-right: 4px;
}
}
&.inline.delete-button {
padding: 8px 15px;
font-weight: normal;
}
.background {
&.red {
background-color: #d95c5c !important;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.blue {
background-color: #428bca !important;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.black {
2019-05-14 06:24:23 +05:30
background-color: #444444;
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.grey {
background-color: #767676 !important;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.light.grey {
2019-05-14 06:24:23 +05:30
background-color: #888888 !important;
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.green {
background-color: #6cc644 !important;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.purple {
background-color: #6e5494 !important;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.yellow {
2019-05-14 06:24:23 +05:30
background-color: #fbbf09 !important;
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&.gold {
background-color: #a1882b !important;
}
}
2019-07-08 07:44:12 +05:30
.migrate {
color: #888888 !important;
opacity: 0.5;
a {
color: #444444 !important;
&:hover {
color: #000000 !important;
}
}
}
2017-10-27 10:00:54 +05:30
.branch-tag-choice {
line-height: 20px;
}
2019-04-08 12:01:54 +05:30
&.pagination.menu {
2019-05-13 11:56:32 +05:30
@media only screen and (max-width: 767px) {
2019-04-08 12:01:54 +05:30
.item:not(.active):not(.navigation),
2019-05-13 11:56:32 +05:30
.item.navigation span.navigation_label {
2019-04-08 12:01:54 +05:30
display: none;
}
}
}
2015-03-08 01:42:13 +05:30
}
2015-08-12 15:42:06 +05:30
2018-08-06 10:13:22 +05:30
.file-comment {
2019-03-18 18:19:01 +05:30
font: 12px @monospaced-fonts, monospace;
2019-05-14 06:24:23 +05:30
color: rgba(0, 0, 0, 0.87);
2017-10-15 04:47:39 +05:30
2018-08-06 10:13:22 +05:30
}
2017-10-15 04:47:39 +05:30
2019-03-05 08:43:51 +05:30
.ui.floating.dropdown {
.overflow.menu {
.scrolling.menu.items {
2019-05-13 11:56:32 +05:30
border-radius: 0 !important;
2019-03-05 08:43:51 +05:30
box-shadow: none !important;
border-bottom: 1px solid rgba(34, 36, 38, 0.15);
2017-10-27 10:00:54 +05:30
}
}
2015-08-26 10:09:32 +05:30
}
2018-09-28 02:28:38 +05:30
.user-menu > .item {
width: 100%;
border-radius: 0 !important;
}
2015-08-31 13:40:28 +05:30
.scrolling.menu {
2017-10-27 10:00:54 +05:30
.item.selected {
font-weight: 700 !important;
}
2015-08-31 13:40:28 +05:30
}
2015-03-08 01:42:13 +05:30
footer {
2017-10-27 10:00:54 +05:30
background-color: white;
border-top: 1px solid #d6d6d6;
width: 100%;
2019-02-25 16:07:04 +05:30
flex-basis: 40px;
2017-10-27 10:00:54 +05:30
color: #888888;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.container {
2019-02-09 20:37:38 +05:30
width: 100vw !important;
2019-05-14 06:24:23 +05:30
padding: 0 0.5rem;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.fa {
width: 16px;
text-align: center;
color: #428bca;
}
2019-05-13 11:56:32 +05:30
.links > * {
2017-10-27 10:00:54 +05:30
border-left: 1px solid #d6d6d6;
padding-left: 8px;
margin-left: 5px;
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
&:first-child {
2019-05-14 06:24:23 +05:30
border-left: 0;
2017-10-27 10:00:54 +05:30
}
}
}
.ui.language .menu {
max-height: 500px;
overflow-y: auto;
margin-bottom: 7px;
}
2019-01-30 06:15:08 +05:30
.ui {
2019-05-14 06:24:23 +05:30
&.left,
&.right {
2019-01-30 06:15:08 +05:30
line-height: 40px;
}
}
2015-03-08 01:42:13 +05:30
}
2015-07-07 22:39:03 +05:30
.hide {
2017-10-27 10:00:54 +05:30
display: none;
2019-05-13 11:56:32 +05:30
2018-08-06 10:13:22 +05:30
&.show-outdated {
display: none !important;
}
2019-05-13 11:56:32 +05:30
2018-08-06 10:13:22 +05:30
&.hide-outdated {
display: none !important;
}
2015-07-07 22:39:03 +05:30
}
2019-05-13 11:56:32 +05:30
2015-07-08 17:17:56 +05:30
.center {
2017-10-27 10:00:54 +05:30
text-align: center;
2015-07-08 17:17:56 +05:30
}
2015-03-08 01:42:13 +05:30
.generate-img(16);
.generate-img(@n, @i: 1) when (@i =< @n) {
2017-10-27 10:00:54 +05:30
.img-@{i} {
width: (2px * @i) !important;
height: (2px * @i) !important;
}
2019-05-14 06:24:23 +05:30
2017-10-27 10:00:54 +05:30
.generate-img(@n, (@i + 1));
2015-03-20 12:50:05 +05:30
}
2017-12-31 06:17:52 +05:30
// Conditional display
@media only screen and (min-width: 768px) {
2019-05-14 06:24:23 +05:30
.mobile-only,
.ui.button.mobile-only {
2019-05-13 11:56:32 +05:30
display: none;
2017-12-31 06:17:52 +05:30
}
2019-05-13 11:56:32 +05:30
2017-12-31 06:17:52 +05:30
// has the same behaviour of sr-only, hiding the content for
// non-screenreaders, but is shown on mobile devices.
.sr-mobile-only {
.sr-only();
}
}
2019-05-13 11:56:32 +05:30
2017-12-31 06:17:52 +05:30
@media only screen and (max-width: 767px) {
.not-mobile {
display: none;
}
}
2015-03-20 12:50:05 +05:30
// Accessibility
.sr-only {
2017-10-27 10:00:54 +05:30
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
2015-03-20 12:50:05 +05:30
}
2019-05-13 11:56:32 +05:30
2015-03-20 12:50:05 +05:30
.sr-only-focusable:active,
.sr-only-focusable:focus {
2017-10-27 10:00:54 +05:30
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
2015-08-25 23:35:08 +05:30
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
2017-10-27 10:00:54 +05:30
.ui.container {
width: 95%;
}
2015-12-08 01:50:54 +05:30
}
2016-01-31 21:49:02 +05:30
/* Overrides some styles of the Highlight.js plugin */
.hljs {
2017-10-27 10:00:54 +05:30
background: inherit !important;
padding: 0 !important;
2016-01-31 21:49:02 +05:30
}
2017-03-16 04:09:38 +05:30
.ui.menu.new-menu {
2017-10-27 10:00:54 +05:30
justify-content: center !important;
padding-top: 15px !important;
margin-top: -15px !important;
margin-bottom: 15px !important;
2019-05-14 06:24:23 +05:30
background-color: #fafafa !important;
2017-10-27 10:00:54 +05:30
border-width: 1px !important;
2017-03-16 04:09:38 +05:30
}
2017-05-24 11:30:40 +05:30
@media only screen and (max-width: 1200px) {
2017-10-27 10:00:54 +05:30
.ui.menu.new-menu {
overflow-x: auto !important;
justify-content: left !important;
padding-bottom: 5px;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.ui.menu.new-menu::-webkit-scrollbar {
height: 8px;
display: none;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.ui.menu.new-menu:hover::-webkit-scrollbar {
display: block;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.ui.menu.new-menu::-webkit-scrollbar-track {
2019-05-13 11:56:32 +05:30
background: rgba(0, 0, 0, 0.01);
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.ui.menu.new-menu::-webkit-scrollbar-thumb {
2019-05-13 11:56:32 +05:30
background: rgba(0, 0, 0, 0.2);
2017-10-27 10:00:54 +05:30
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.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;
}
2019-05-13 11:56:32 +05:30
2017-10-27 10:00:54 +05:30
.ui.menu.new-menu a.item:last-child {
padding-right: 30px !important;
}
2017-05-24 11:30:40 +05:30
}
2017-08-17 07:01:34 +05:30
[v-cloak] {
2017-10-27 10:00:54 +05:30
display: none !important;
2017-08-17 07:01:34 +05:30
}
.repos-search {
padding-bottom: 0 !important;
}
.repos-filter {
margin-top: 0 !important;
border-bottom-width: 0 !important;
margin-bottom: 2px !important;
2017-10-15 04:47:39 +05:30
}
2018-10-23 08:27:42 +05:30
2019-02-06 12:39:13 +05:30
#user-heatmap {
2018-10-23 08:27:42 +05:30
width: 107%; // Fixes newest contributions not showing
text-align: center;
svg:not(:root) {
overflow: inherit;
padding: 0 !important;
}
@media only screen and (max-width: 1200px) {
& {
display: none;
}
}
}
2018-11-27 15:06:54 +05:30
.heatmap-color-0 {
background-color: #f4f4f4;
}
.heatmap-color-1 {
background-color: #d7e5db;
}
.heatmap-color-2 {
background-color: #adc7ab;
}
.heatmap-color-3 {
background-color: #83a87b;
}
.heatmap-color-4 {
background-color: #598a4b;
}
.heatmap-color-5 {
background-color: #2f6b1b;
}
2019-01-24 00:28:38 +05:30
2019-05-13 11:56:32 +05:30
.archived-icon {
2019-05-14 06:24:23 +05:30
color: lighten(#000000, 70%) !important;
2019-01-24 00:28:38 +05:30
}
2019-03-08 22:12:50 +05:30
.oauth2-authorize-application-box {
margin-top: 3em !important;
}
2019-04-30 00:19:59 +05:30
/* Tab color tweaks */
.ui.tabular.menu .item {
2019-05-14 06:24:23 +05:30
color: rgba(0, 0, 0, 0.5);
2019-04-30 00:19:59 +05:30
}
2019-05-13 11:56:32 +05:30
2019-04-30 00:19:59 +05:30
.ui.tabular.menu .item:hover {
2019-05-14 06:24:23 +05:30
color: rgba(0, 0, 0, 0.8);
2019-04-30 00:19:59 +05:30
}
2019-05-13 11:56:32 +05:30
2019-04-30 00:19:59 +05:30
.ui.tabular.menu .item.active {
2019-05-14 06:24:23 +05:30
color: rgba(0, 0, 0, 0.9);
2019-04-30 00:19:59 +05:30
}