Skip to content
Snippets Groups Projects
Commit 5dab9d7a authored by Adriano Caheté's avatar Adriano Caheté
Browse files

Fixing misaligned boxes + Fix for dropdown menu appearing in front of username box

parent 059ab95d
No related branches found
No related tags found
No related merge requests found
...@@ -938,6 +938,7 @@ a.github-fork { ...@@ -938,6 +938,7 @@ a.github-fork {
position: relative; position: relative;
height: 100%; height: 100%;
padding: 10px 0px 10px 18px; padding: 10px 0px 10px 18px;
z-index:100;
.thumb { .thumb {
float: left; float: left;
height: 100%; height: 100%;
...@@ -1012,6 +1013,8 @@ a.github-fork { ...@@ -1012,6 +1013,8 @@ a.github-fork {
direction: rtl; direction: rtl;
.calc(height, ~'100% - ' @header-min-height + @footer-min-height); .calc(height, ~'100% - ' @header-min-height + @footer-min-height);
.transition(transform .3s cubic-bezier(.5, 0, .1, 1)); .transition(transform .3s cubic-bezier(.5, 0, .1, 1));
z-index:99;
&._hidden { &._hidden {
.transform(translateY(-100%) translateY(-50px)); .transform(translateY(-100%) translateY(-50px));
} }
...@@ -1583,7 +1586,7 @@ a.github-fork { ...@@ -1583,7 +1586,7 @@ a.github-fork {
top: 0; top: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height: @header-min-height; height: @header-min-height+1px;
&.visible { &.visible {
h2 { h2 {
overflow: visible; overflow: visible;
...@@ -2037,7 +2040,7 @@ a.github-fork { ...@@ -2037,7 +2040,7 @@ a.github-fork {
} }
.footer { .footer {
position: absolute; position: absolute;
padding: 10px 20px 0px 20px; padding: 8px 20px 0px 20px;
border-top: 1px solid; border-top: 1px solid;
z-index: 100; z-index: 100;
bottom: 0; bottom: 0;
...@@ -2110,6 +2113,8 @@ a.github-fork { ...@@ -2110,6 +2113,8 @@ a.github-fork {
} }
> .file { > .file {
width: 44px; width: 44px;
height: 38px;
margin: 1px 0 0 0;
font-size: 22px; font-size: 22px;
padding: 6px 0; padding: 6px 0;
text-align: center; text-align: center;
...@@ -2118,6 +2123,7 @@ a.github-fork { ...@@ -2118,6 +2123,7 @@ a.github-fork {
border-right: none; border-right: none;
cursor: pointer; cursor: pointer;
.transition(background-color 0.1s linear, color 0.1s linear); .transition(background-color 0.1s linear, color 0.1s linear);
&:hover { &:hover {
} }
...@@ -2349,8 +2355,7 @@ a.github-fork { ...@@ -2349,8 +2355,7 @@ a.github-fork {
font-size: 12px; font-size: 12px;
font-weight: 600; font-weight: 600;
text-align: center; text-align: center;
.calc(left, .calc(left,~"50% - 70px");
~"50% - 70px");
z-index: 10; z-index: 10;
padding: 0 10px; padding: 0 10px;
min-width: 140px; min-width: 140px;
...@@ -2363,6 +2368,8 @@ a.github-fork { ...@@ -2363,6 +2368,8 @@ a.github-fork {
left: 0; left: 0;
width: 100%; width: 100%;
border-top: 1px solid; border-top: 1px solid;
width: 96%;
margin-left: 2%;
} }
} }
.edit-message { .edit-message {
......
...@@ -328,6 +328,7 @@ a.github-fork { ...@@ -328,6 +328,7 @@ a.github-fork {
.account-box { .account-box {
.info { .info {
background-color:@primary-background-color;
h4 { h4 {
color: rgba(255, 255, 255, 0.65); color: rgba(255, 255, 255, 0.65);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment