* Add lang specific font stacks
* Force font changes
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Fix icons
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Fix octicons and icons
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Just override the semantic ui fonts only
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Missed the headers... override them too
* Missed some more semantic ui stuff
* Fix PT Sans
Signed-off-by: Andrew Thornton <art27@cantab.net>
* More changes
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Squashed commit of the following:
commit 7d1679e9079541359869c9e677ba7412bfcc59f3
Author: Mike L <cl.jeremy@qq.com>
Date:   Wed Mar 13 13:53:49 2019 +0100
    Remove missed YaHei leftover from _home.less
commit 0079121ea91860a323ed4e5cc1a9c0d490d9cefd
Author: Mike L <cl.jeremy@qq.com>
Date:   Wed Mar 13 12:03:54 2019 +0100
    Fix overdone fixes (inherit, :lang)
commit 62c919915928ec1db4731d547e95885f91a0618d
Author: Mike L <cl.jeremy@qq.com>
Date:   Wed Mar 13 02:29:10 2019 +0100
    Fix elements w/ explicit lang (language chooser)
commit b3117587aa2eb8570d60bed583a11ee5565418be
Author: Mike L <cl.jeremy@qq.com>
Date:   Tue Mar 12 20:17:26 2019 +0100
    Fix textarea also (to match body)
commit 81cedf2c3012c4dd05a7680782b4a98e1b947f67
Author: Mike L <cl.jeremy@qq.com>
Date:   Tue Mar 12 19:41:39 2019 +0100
    Revert css temporarily to fix conflict
commit 80ff82797f3203cbeaf866f22e961334e137df89
Author: Mike L <cl.jeremy@qq.com>
Date:   Tue Mar 12 19:15:30 2019 +0100
    Tweak CJK, fix Yu Gothic, more monospace inherits
commit 581dceb9a869646c2c486dabb925c88c2680d70c
Author: Mike L <cl.jeremy@qq.com>
Date:   Mon Mar 11 13:09:26 2019 +0100
    Add Lato for latin extd. & cyrillic, improve CJK
* update stylesheet
		
	
			
		
			
				
	
	
		
			761 lines
		
	
	
	
		
			18 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			761 lines
		
	
	
	
		
			18 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| 
 | |
| @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 */
 | |
|     h1, h2, h3, h4, h5 {
 | |
|         font-family: Lato, @fonts, sans-serif;
 | |
|     }
 | |
| 
 | |
|     .home .hero h1, .home .hero h2 {
 | |
|         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,
 | |
|     .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],
 | |
|     .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,
 | |
|     .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: Lato, @fonts, sans-serif;
 | |
|     }
 | |
| }
 | |
| 
 | |
| .override-fonts(@default-fonts);
 | |
| 
 | |
| body {
 | |
|     background-color: #fff;
 | |
|     overflow-y: auto;
 | |
|     -webkit-font-smoothing: antialiased;
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
| }
 | |
| 
 | |
| @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;);
 | |
| }
 | |
| 
 | |
| img {
 | |
|     border-radius: 3px;
 | |
| }
 | |
| table {
 | |
|     border-collapse: collapse;
 | |
| }
 | |
| a {
 | |
|     cursor: pointer;
 | |
| }
 | |
| .rounded {
 | |
|     border-radius: .28571429rem !important;
 | |
| }
 | |
| pre, code {
 | |
|     font: 12px @monospaced-fonts, monospace;
 | |
|     &.raw {
 | |
|         padding: 7px 12px;
 | |
|         margin: 10px 0;
 | |
|         background-color: #f8f8f8;
 | |
|         border: 1px solid #ddd;
 | |
|         border-radius: 3px;
 | |
|         font-size: 13px;
 | |
|         line-height: 1.5;
 | |
|         overflow: auto;
 | |
|     }
 | |
|     &.wrap {
 | |
|         white-space: pre-wrap;       /* CSS 3 */
 | |
| //      white-space: -moz-normal;    /* Mozilla, since 1999 */
 | |
| //      white-space: -normal;        /* Opera 4-6 */
 | |
| //      white-space: -o-normal;      /* Opera 7 */
 | |
| 
 | |
|         -ms-word-break: break-all;
 | |
|         word-break: break-all;
 | |
| 
 | |
|         /* These are technically the same, but use both */
 | |
|         overflow-wrap: break-word;
 | |
|         word-wrap: break-word;
 | |
|     }
 | |
| }
 | |
| .dont-break-out {
 | |
|     /* These are technically the same, but use both */
 | |
|     overflow-wrap: break-word;
 | |
|     word-wrap: break-word;
 | |
| 
 | |
|     -ms-word-break: break-all;
 | |
|     word-break: break-all;
 | |
| 
 | |
|     /* Adds a hyphen where the word breaks, if supported (No Blink) */
 | |
|     hyphens: auto;
 | |
| }
 | |
| .full.height {
 | |
|     flex-grow: 1;
 | |
|     padding-bottom: 80px;
 | |
| }
 | |
| .following.bar {
 | |
|     z-index: 900;
 | |
|     left: 0;
 | |
|     width: 100%;
 | |
|     margin: 0;
 | |
|     &.light {
 | |
|         background-color: white;
 | |
|         border-bottom: 1px solid #DDDDDD;
 | |
|         box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
 | |
|     }
 | |
|     .column .menu {
 | |
|         margin-top: 0;
 | |
|     }
 | |
|     .top.menu a.item.brand {
 | |
|         padding-left: 0;
 | |
|     }
 | |
|     .brand .ui.mini.image {
 | |
|         width: 30px;
 | |
|     }
 | |
|     .top.menu a.item:hover,
 | |
|     .top.menu .dropdown.item:hover,
 | |
|     .top.menu .dropdown.item.active {
 | |
|         background-color: transparent;
 | |
|     }
 | |
|     .top.menu a.item:hover {
 | |
|         color: rgba(0,0,0,.45);
 | |
|     }
 | |
|     .top.menu .menu {
 | |
|         z-index: 900;
 | |
|     }
 | |
|     .octicon {
 | |
|         &.fitted {
 | |
|             margin-right: 0;
 | |
|         }
 | |
|         margin-right: .75em;
 | |
|     }
 | |
|     .searchbox {
 | |
|         background-color: rgb(244, 244, 244) !important;
 | |
|         &:focus {
 | |
|             background-color: rgb(233, 233, 233) !important;
 | |
|         }
 | |
|     }
 | |
|     .text .octicon {
 | |
|         width: 16px;
 | |
|         text-align: center;
 | |
|     }
 | |
|     #navbar {
 | |
|         width: 100vw;
 | |
|         padding: 0 .5rem;
 | |
|     }
 | |
|     #navbar .brand {
 | |
|         margin: 0;
 | |
|     }
 | |
|     @media only screen and (max-width: 767px) {
 | |
|         #navbar:not(.shown) > *:not(:first-child) {
 | |
|             display: none;
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| .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;
 | |
| }
 | |
| 
 | |
| .ui {
 | |
|     &.left {
 | |
|         float: left;
 | |
|     }
 | |
|     &.right {
 | |
|         float: right;
 | |
|     }
 | |
| 
 | |
|     &.button, &.menu .item {
 | |
|         user-select: auto;
 | |
|     }
 | |
| 
 | |
|     &.container {
 | |
|         &.fluid {
 | |
|             &.padded {
 | |
|                 padding: 0 10px 0 10px;
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     &.form {
 | |
|         .ui.button {
 | |
|             font-weight: normal;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     &.floating.label {
 | |
|         z-index: 10;
 | |
|     }
 | |
| 
 | |
|     &.transparent.label {
 | |
|         background-color: transparent;
 | |
|     }
 | |
| 
 | |
|     &.menu,
 | |
|     &.vertical.menu,
 | |
|     &.segment {
 | |
|         box-shadow: none;
 | |
|     }
 | |
| 
 | |
|     /* Overide semantic selector '.ui.menu:not(.vertical) .item > .button' */
 | |
|     /* This fixes the commit graph button on the commits page */
 | |
|     .menu:not(.vertical) .item > .button.compact {
 | |
|         padding: .58928571em 1.125em;
 | |
|     }
 | |
|     .menu:not(.vertical) .item > .button.small {
 | |
|         font-size: .92857143rem;
 | |
|     }
 | |
| 
 | |
|     &.dropdown .menu>.item>.floating.label {
 | |
|         z-index: 11;
 | |
|     }
 | |
| 
 | |
|     &.dropdown .menu .menu>.item>.floating.label {
 | |
|         z-index: 21;
 | |
|     }
 | |
| 
 | |
|     .text {
 | |
|         &.red {
 | |
|             color: #d95c5c !important;
 | |
|             a {
 | |
|                 color: #d95c5c !important;
 | |
|                 &:hover {
 | |
|                     color: #E67777 !important;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         &.blue {
 | |
|             color: #428bca !important;
 | |
|             a {
 | |
|                 color: #15c !important;
 | |
|                 &:hover {
 | |
|                     color: #428bca !important;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         &.black {
 | |
|             color: #444;
 | |
|             &:hover {
 | |
|                 color: #000;
 | |
|             }
 | |
|         }
 | |
|         &.grey {
 | |
|             color: #767676 !important;
 | |
|             a {
 | |
|                 color: #444 !important;
 | |
|                 &:hover {
 | |
|                     color: #000 !important;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         &.light.grey {
 | |
|             color: #888 !important;
 | |
|         }
 | |
|         &.green {
 | |
|             color: #6cc644 !important;
 | |
|         }
 | |
|         &.purple {
 | |
|             color: #6e5494 !important;
 | |
|         }
 | |
|         &.yellow {
 | |
|             color: #FBBD08 !important;
 | |
|         }
 | |
|         &.gold {
 | |
|             color: #a1882b !important;
 | |
|         }
 | |
| 
 | |
|         &.left {
 | |
|             text-align: left !important;
 | |
|         }
 | |
|         &.right {
 | |
|             text-align: right !important;
 | |
|         }
 | |
|         &.small {
 | |
|             font-size: 0.75em;
 | |
|         }
 | |
|         &.normal {
 | |
|             font-weight: normal;
 | |
|         }
 | |
|         &.bold {
 | |
|             font-weight: bold;
 | |
|         }
 | |
|         &.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;
 | |
|     }
 | |
| 
 | |
|     &.bottom.attached.message {
 | |
|         font-weight: bold;
 | |
|         text-align: left;
 | |
|         color: black;
 | |
|         .pull-right {
 | |
|             color: black;
 | |
|         }
 | |
|         &>span, .pull-right>span{
 | |
|             color:#21ba45;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     .header > i + .content {
 | |
|         padding-left: 0.75rem;
 | |
|         vertical-align: middle;
 | |
|     }
 | |
|     .warning {
 | |
|         &.header {
 | |
|             background-color: #F9EDBE !important;
 | |
|             border-color: #F0C36D;
 | |
|         }
 | |
|         &.segment {
 | |
|             border-color: #F0C36D;
 | |
|         }
 | |
|     }
 | |
|     .info {
 | |
|         &.segment {
 | |
|             border: 1px solid #c5d5dd;
 | |
|             &.top {
 | |
|                 background-color: #e6f1f6 !important;
 | |
|                 h3, h4 {
 | |
|                     margin-top: 0;
 | |
|                 }
 | |
|                 h3:last-child {
 | |
|                     margin-top: 4px;
 | |
|                 }
 | |
|                 > :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 {
 | |
|         font-family: @monospaced-fonts, monospace;
 | |
|         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;
 | |
|         }
 | |
|         &.blue {
 | |
|             background-color: #428bca !important;
 | |
|         }
 | |
|         &.black {
 | |
|             background-color: #444;
 | |
|         }
 | |
|         &.grey {
 | |
|             background-color: #767676 !important;
 | |
|         }
 | |
|         &.light.grey {
 | |
|             background-color: #888 !important;
 | |
|         }
 | |
|         &.green {
 | |
|             background-color: #6cc644 !important;
 | |
|         }
 | |
|         &.purple {
 | |
|             background-color: #6e5494 !important;
 | |
|         }
 | |
|         &.yellow {
 | |
|             background-color: #FBBD08 !important;
 | |
|         }
 | |
|         &.gold {
 | |
|             background-color: #a1882b !important;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     .branch-tag-choice {
 | |
|         line-height: 20px;
 | |
|     }
 | |
| }
 | |
| 
 | |
| .file-comment {
 | |
|     font: 12px @monospaced-fonts, monospace;
 | |
|     color: rgba(0,0,0,.87);
 | |
| 
 | |
| }
 | |
| 
 | |
| .ui.floating.dropdown {
 | |
|     .overflow.menu {
 | |
|         .scrolling.menu.items {
 | |
|             border-radius: 0px !important;
 | |
|             box-shadow: none !important;
 | |
|             border-bottom: 1px solid rgba(34, 36, 38, 0.15);
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| .user-menu > .item {
 | |
|     width: 100%;
 | |
|     border-radius: 0 !important;
 | |
| }
 | |
| 
 | |
| .scrolling.menu {
 | |
|     .item.selected {
 | |
|         font-weight: 700 !important;
 | |
|     }
 | |
| }
 | |
| 
 | |
| footer {
 | |
|     background-color: white;
 | |
|     border-top: 1px solid #d6d6d6;
 | |
|     width: 100%;
 | |
|     flex-basis: 40px;
 | |
|     color: #888888;
 | |
|     .container {
 | |
|         width: 100vw !important;
 | |
|         padding: 0 .5rem;
 | |
|         .fa {
 | |
|             width: 16px;
 | |
|             text-align: center;
 | |
|             color: #428bca;
 | |
|         }
 | |
|         .links >* {
 | |
|             border-left: 1px solid #d6d6d6;
 | |
|             padding-left: 8px;
 | |
|             margin-left: 5px;
 | |
|             &:first-child {
 | |
|                 border-left: none;
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     .ui.language .menu {
 | |
|         max-height: 500px;
 | |
|         overflow-y: auto;
 | |
|         margin-bottom: 7px;
 | |
|     }
 | |
| 
 | |
|     .ui {
 | |
|         &.left, &.right {
 | |
|             line-height: 40px;
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| .hide {
 | |
|     display: none;
 | |
|     &.show-outdated {
 | |
|         display: none !important;
 | |
|     }
 | |
|     &.hide-outdated {
 | |
|         display: none !important;
 | |
|     }
 | |
| }
 | |
| .center {
 | |
|     text-align: center;
 | |
| }
 | |
| 
 | |
| .generate-img(16);
 | |
| .generate-img(@n, @i: 1) when (@i =< @n) {
 | |
|     .img-@{i} {
 | |
|         width: (2px * @i) !important;
 | |
|         height: (2px * @i) !important;
 | |
|     }
 | |
|     .generate-img(@n, (@i + 1));
 | |
| }
 | |
| 
 | |
| // Conditional display
 | |
| @media only screen and (min-width: 768px) {
 | |
|     .mobile-only, .ui.button.mobile-only {
 | |
|       display: none;
 | |
|     }
 | |
|     // has the same behaviour of sr-only, hiding the content for
 | |
|     // non-screenreaders, but is shown on mobile devices.
 | |
|     .sr-mobile-only {
 | |
|         .sr-only();
 | |
|     }
 | |
| }
 | |
| @media only screen and (max-width: 767px) {
 | |
|     .not-mobile {
 | |
|         display: none;
 | |
|     }
 | |
| }
 | |
| 
 | |
| // Accessibility
 | |
| .sr-only {
 | |
|     position: absolute;
 | |
|     width: 1px;
 | |
|     height: 1px;
 | |
|     padding: 0;
 | |
|     margin: -1px;
 | |
|     overflow: hidden;
 | |
|     clip: rect(0, 0, 0, 0);
 | |
|     border: 0;
 | |
| }
 | |
| .sr-only-focusable:active,
 | |
| .sr-only-focusable:focus {
 | |
|     position: static;
 | |
|     width: auto;
 | |
|     height: auto;
 | |
|     margin: 0;
 | |
|     overflow: visible;
 | |
|     clip: auto;
 | |
| }
 | |
| 
 | |
| @media only screen and (max-width: 991px) and (min-width: 768px) {
 | |
|     .ui.container {
 | |
|         width: 95%;
 | |
|     }
 | |
| }
 | |
| 
 | |
| /* Overrides some styles of the Highlight.js plugin */
 | |
| .hljs {
 | |
|     background: inherit !important;
 | |
|     padding: 0 !important;
 | |
| }
 | |
| 
 | |
| .ui.menu.new-menu {
 | |
|     justify-content: center !important;
 | |
|     padding-top: 15px !important;
 | |
|     margin-top: -15px !important;
 | |
|     margin-bottom: 15px !important;
 | |
|     background-color: #FAFAFA !important;
 | |
|     border-width: 1px !important;
 | |
| }
 | |
| 
 | |
| @media only screen and (max-width: 1200px) {
 | |
|     .ui.menu.new-menu {
 | |
|         overflow-x: auto !important;
 | |
|         justify-content: left !important;
 | |
|         padding-bottom: 5px;
 | |
|     }
 | |
|     .ui.menu.new-menu::-webkit-scrollbar {
 | |
|         height: 8px;
 | |
|         display: none;
 | |
|     }
 | |
|     .ui.menu.new-menu:hover::-webkit-scrollbar {
 | |
|         display: block;
 | |
|     }
 | |
|     .ui.menu.new-menu::-webkit-scrollbar-track {
 | |
|         background: rgba(0,0,0,0.01);
 | |
|     }
 | |
|     .ui.menu.new-menu::-webkit-scrollbar-thumb {
 | |
|         background:rgba(0,0,0,0.2);
 | |
|     }
 | |
|     .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;
 | |
|     }
 | |
| }
 | |
| 
 | |
| [v-cloak] {
 | |
|     display: none !important;
 | |
| }
 | |
| 
 | |
| .repos-search {
 | |
|     padding-bottom: 0 !important;
 | |
| }
 | |
| 
 | |
| .repos-filter {
 | |
|     margin-top: 0 !important;
 | |
|     border-bottom-width: 0 !important;
 | |
|     margin-bottom: 2px !important;
 | |
| }
 | |
| 
 | |
| #user-heatmap {
 | |
|     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;
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| .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;
 | |
| }
 | |
| 
 | |
| .archived-icon{
 | |
|     color: lighten(#000, 70%) !important;
 | |
| }
 | |
| 
 | |
| .archived-icon{
 | |
|     color: lighten(#000, 70%) !important;
 | |
| }
 | |
| 
 | |
| .oauth2-authorize-application-box {
 | |
|     margin-top: 3em !important;
 | |
| }
 |