Skip to content

Commit f8e18c3

Browse files
committed
Fix missing less sources for oauth
1 parent f1d2f16 commit f8e18c3

File tree

3 files changed

+58
-33
lines changed

3 files changed

+58
-33
lines changed

public/css/index.css

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -957,6 +957,23 @@ footer .ui.language .menu {
957957
#create-page-form form textarea {
958958
width: 50%!important;
959959
}
960+
.signin .oauth2 div {
961+
display: inline-block;
962+
}
963+
.signin .oauth2 div p {
964+
margin: 10px 5px 0 0;
965+
float: left;
966+
}
967+
.signin .oauth2 a {
968+
margin-right: 5px;
969+
}
970+
.signin .oauth2 a:last-child {
971+
margin-right: 0px;
972+
}
973+
.signin .oauth2 img {
974+
width: 32px;
975+
height: 32px;
976+
}
960977
.user.activate form,
961978
.user.forgot.password form,
962979
.user.reset.password form,
@@ -1414,17 +1431,6 @@ footer .ui.language .menu {
14141431
.repository.file.editor .commit-form-wrapper {
14151432
padding-left: 64px;
14161433
}
1417-
.repository.file.editor .tab[data-tab="write"] {
1418-
padding: 0 !important;
1419-
}
1420-
.repository.file.editor .tab[data-tab="write"] .editor-toolbar {
1421-
border: none !important;
1422-
}
1423-
.repository.file.editor .tab[data-tab="write"] .CodeMirror {
1424-
border-left: none;
1425-
border-right: none;
1426-
border-bottom: none;
1427-
}
14281434
.repository.file.editor .commit-form-wrapper .commit-avatar {
14291435
float: left;
14301436
margin-left: -64px;
@@ -2557,6 +2563,17 @@ footer .ui.language .menu {
25572563
.CodeMirror .cm-comment {
25582564
background: inherit !important;
25592565
}
2566+
.repository.file.editor .tab[data-tab="write"] {
2567+
padding: 0 !important;
2568+
}
2569+
.repository.file.editor .tab[data-tab="write"] .editor-toolbar {
2570+
border: none !important;
2571+
}
2572+
.repository.file.editor .tab[data-tab="write"] .CodeMirror {
2573+
border-left: none;
2574+
border-right: none;
2575+
border-bottom: none;
2576+
}
25602577
.organization {
25612578
padding-top: 15px;
25622579
padding-bottom: 80px;
@@ -2764,6 +2781,10 @@ footer .ui.language .menu {
27642781
.user.notification .octicon.blue {
27652782
color: #2185d0;
27662783
}
2784+
.user.link-account:not(.icon) {
2785+
padding-top: 15px;
2786+
padding-bottom: 5px;
2787+
}
27672788
.dashboard {
27682789
padding-top: 15px;
27692790
padding-bottom: 80px;
@@ -3013,24 +3034,3 @@ footer .ui.language .menu {
30133034
.ui.user.list .item .description a:hover {
30143035
text-decoration: underline;
30153036
}
3016-
.user.link-account:not(.icon) {
3017-
padding-top: 15px;
3018-
padding-bottom: 5px;
3019-
}
3020-
.signin .oauth2 div {
3021-
display: inline-block;
3022-
}
3023-
.signin .oauth2 div p {
3024-
margin: 10px 5px 0 0;
3025-
float: left;
3026-
}
3027-
.signin .oauth2 a {
3028-
margin-right: 5px;
3029-
}
3030-
.signin .oauth2 a:last-child {
3031-
margin-right: 0px;
3032-
}
3033-
.signin .oauth2 img {
3034-
width: 32px;
3035-
height: 32px;
3036-
}

public/less/_form.less

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,27 @@
4646
}
4747
}
4848

49+
.signin {
50+
.oauth2{
51+
div {
52+
display: inline-block;
53+
p {
54+
margin: 10px 5px 0 0;
55+
float: left;
56+
}
57+
}
58+
a {
59+
margin-right: 5px;
60+
&:last-child {
61+
margin-right: 0px;
62+
}
63+
}
64+
img {
65+
width: 32px;
66+
height: 32px;
67+
}
68+
}
69+
}
4970
.user.activate,
5071
.user.forgot.password,
5172
.user.reset.password,
@@ -85,7 +106,7 @@
85106
.header {
86107
padding-left: 0 !important;
87108
text-align: center;
88-
}
109+
}
89110
}
90111
}
91112

public/less/_user.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,8 @@
114114
}
115115
}
116116
}
117+
&.link-account:not(.icon) {
118+
padding-top: 15px;
119+
padding-bottom: 5px;
120+
}
117121
}

0 commit comments

Comments
 (0)