2015-08-25 17:58:34 +03:00
.dashboard {
2020-08-25 22:48:53 +03:00
&.feeds,
&.issues {
.context.user.menu {
z-index: 101;
min-width: 200px;
.ui.header {
font-size: 1rem;
text-transform: none;
}
}
2015-08-25 17:58:34 +03:00
2020-08-25 22:48:53 +03:00
.filter.menu {
width: initial;
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
.item {
text-align: left;
2021-09-12 14:40:20 +03:00
display: flex;
align-items: center;
justify-content: space-between;
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
.text {
height: 16px;
vertical-align: middle;
2015-11-04 20:50:02 +03:00
2020-08-25 22:48:53 +03:00
&.truncate {
width: 75%;
}
}
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
.floating.label {
top: 7px;
left: 90%;
width: 15%;
2019-05-13 09:26:32 +03:00
2020-11-17 08:33:19 +03:00
@media @mediaSm {
2020-08-25 22:48:53 +03:00
top: 10px;
left: auto;
width: auto;
right: 13px;
}
2019-05-13 09:26:32 +03:00
}
2020-08-25 22:48:53 +03:00
}
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
// Sort
.jump.item {
margin: 1px;
padding-right: 0;
}
2018-07-26 18:25:41 +03:00
2020-08-25 22:48:53 +03:00
.menu {
max-height: 300px;
overflow-x: auto;
right: 0 !important;
left: auto !important;
}
2019-05-13 09:26:32 +03:00
2020-11-17 08:33:19 +03:00
@media @mediaSm {
2020-08-25 22:48:53 +03:00
width: 100%;
}
2017-12-03 02:16:35 +03:00
}
2019-02-09 18:07:38 +03:00
2020-08-25 22:48:53 +03:00
.right.stackable.menu > .item.active {
2020-11-15 23:58:16 +03:00
color: var(--color-red);
2019-02-09 18:07:38 +03:00
}
2020-08-25 22:48:53 +03:00
}
2020-12-04 14:18:37 +03:00
.dashboard-repos,
.dashboard-orgs {
Fix various typos (#20338)
* Fix various typos
Found via `codespell -q 3 -S ./options/locale,./options/license,./public/vendor -L actived,allways,attachements,ba,befores,commiter,pullrequest,pullrequests,readby,splitted,te,unknwon`
Co-authored-by: zeripath <art27@cantab.net>
2022-07-13 00:32:37 +03:00
margin: 0 1px; /* Accommodate for Semantic's 1px hacks on .attached elements */
2020-08-25 22:48:53 +03:00
}
.dashboard-navbar {
width: 100vw;
2020-11-26 22:33:28 +03:00
padding-left: .5rem;
padding-right: .5rem;
2020-10-06 09:25:43 +03:00
.org-visibility .label {
margin-left: 5px;
}
2021-02-12 04:29:07 +03:00
.ui.dropdown {
max-width: 100%;
2022-07-28 21:40:23 +03:00
@media @mediaSm {
> .menu {
position: static;
}
}
2021-02-12 04:29:07 +03:00
}
2020-08-25 22:48:53 +03:00
}
2015-11-13 20:05:48 +03:00
}
&.feeds {
2020-08-25 22:48:53 +03:00
.news {
li {
display: flex;
align-items: baseline;
margin-top: .5rem;
margin-bottom: .5rem;
2020-05-27 23:31:12 +03:00
2020-08-25 22:48:53 +03:00
img {
align-self: flex-start;
}
}
li > * + * {
margin-left: .35rem;
}
2020-05-27 23:31:12 +03:00
2020-08-25 22:48:53 +03:00
> .ui.grid {
margin-left: auto;
margin-right: auto;
}
2019-05-13 09:26:32 +03:00
2020-12-03 21:46:11 +03:00
.left .ui.avatar {
2020-08-25 22:48:53 +03:00
margin-top: 13px;
}
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
.time-since {
font-size: 13px;
}
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
.issue.title {
width: 80%;
2021-01-04 15:18:12 +03:00
margin: 0 0 1em;
2020-08-25 22:48:53 +03:00
}
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
.push.news .content ul {
line-height: 18px;
font-size: 13px;
list-style: none;
padding-left: 10px;
2015-11-13 20:05:48 +03:00
2020-08-25 22:48:53 +03:00
.text.truncate {
width: 80%;
}
}
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
.commit-id {
2020-10-19 23:01:06 +03:00
font-family: var(--fonts-monospace);
2020-08-25 22:48:53 +03:00
}
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
code {
padding: 1px;
font-size: 85%;
background-color: rgba(0, 0, 0, .04);
border-radius: 3px;
word-break: break-all;
}
2020-11-08 00:04:40 +03:00
&:last-of-type .divider {
display: none !important;
}
2020-08-25 22:48:53 +03:00
}
.list {
ul {
list-style: none;
margin: 0;
padding-left: 0;
2015-12-13 00:53:16 +03:00
2020-08-25 22:48:53 +03:00
li {
&:not(:last-child) {
2020-11-08 00:04:40 +03:00
border-bottom: 1px solid var(--color-secondary);
2017-12-02 22:48:43 +03:00
}
2019-05-13 09:26:32 +03:00
2020-08-25 22:48:53 +03:00
&.private {
2022-08-06 17:25:58 +03:00
background-color: var(--color-box-body-highlight);
2020-08-25 22:48:53 +03:00
}
2015-12-07 23:20:54 +03:00
2020-12-17 22:58:21 +03:00
.repo-list-link {
padding: 6px 1em;
2020-08-25 22:48:53 +03:00
display: block;
2016-07-16 07:45:13 +03:00
2020-08-25 22:48:53 +03:00
.svg {
2020-12-17 22:58:21 +03:00
color: var(--color-text-light-2);
2020-08-25 22:48:53 +03:00
}
2016-01-11 15:41:43 +03:00
2020-08-25 22:48:53 +03:00
.star-num {
font-size: 12px;
}
2020-05-16 23:07:01 +03:00
}
2020-08-25 22:48:53 +03:00
}
}
2020-05-16 23:07:01 +03:00
2020-08-25 22:48:53 +03:00
#privateFilterCheckbox .svg {
color: #888888;
margin-right: .25rem;
}
2016-01-11 15:41:43 +03:00
2021-02-25 15:35:43 +03:00
.repo-owner-name-list .item-name {
max-width: 70%;
2017-12-02 22:48:43 +03:00
}
2020-08-25 22:48:53 +03:00
}
2015-12-07 23:20:54 +03:00
}