mirror of https://github.com/go-gitea/gitea.git
Fix missing less sources for oauth (#1288)
This commit is contained in:
parent
1476bf909e
commit
925b252927
|
@ -957,6 +957,23 @@ footer .ui.language .menu {
|
||||||
#create-page-form form textarea {
|
#create-page-form form textarea {
|
||||||
width: 50%!important;
|
width: 50%!important;
|
||||||
}
|
}
|
||||||
|
.signin .oauth2 div {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.signin .oauth2 div p {
|
||||||
|
margin: 10px 5px 0 0;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.signin .oauth2 a {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
.signin .oauth2 a:last-child {
|
||||||
|
margin-right: 0px;
|
||||||
|
}
|
||||||
|
.signin .oauth2 img {
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
}
|
||||||
.user.activate form,
|
.user.activate form,
|
||||||
.user.forgot.password form,
|
.user.forgot.password form,
|
||||||
.user.reset.password form,
|
.user.reset.password form,
|
||||||
|
@ -1414,17 +1431,6 @@ footer .ui.language .menu {
|
||||||
.repository.file.editor .commit-form-wrapper {
|
.repository.file.editor .commit-form-wrapper {
|
||||||
padding-left: 64px;
|
padding-left: 64px;
|
||||||
}
|
}
|
||||||
.repository.file.editor .tab[data-tab="write"] {
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
||||||
.repository.file.editor .tab[data-tab="write"] .editor-toolbar {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.repository.file.editor .tab[data-tab="write"] .CodeMirror {
|
|
||||||
border-left: none;
|
|
||||||
border-right: none;
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
.repository.file.editor .commit-form-wrapper .commit-avatar {
|
.repository.file.editor .commit-form-wrapper .commit-avatar {
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: -64px;
|
margin-left: -64px;
|
||||||
|
@ -2557,6 +2563,17 @@ footer .ui.language .menu {
|
||||||
.CodeMirror .cm-comment {
|
.CodeMirror .cm-comment {
|
||||||
background: inherit !important;
|
background: inherit !important;
|
||||||
}
|
}
|
||||||
|
.repository.file.editor .tab[data-tab="write"] {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
.repository.file.editor .tab[data-tab="write"] .editor-toolbar {
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
|
.repository.file.editor .tab[data-tab="write"] .CodeMirror {
|
||||||
|
border-left: none;
|
||||||
|
border-right: none;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
.organization {
|
.organization {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
padding-bottom: 80px;
|
padding-bottom: 80px;
|
||||||
|
@ -2764,6 +2781,10 @@ footer .ui.language .menu {
|
||||||
.user.notification .octicon.blue {
|
.user.notification .octicon.blue {
|
||||||
color: #2185d0;
|
color: #2185d0;
|
||||||
}
|
}
|
||||||
|
.user.link-account:not(.icon) {
|
||||||
|
padding-top: 15px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
}
|
||||||
.dashboard {
|
.dashboard {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
padding-bottom: 80px;
|
padding-bottom: 80px;
|
||||||
|
@ -3013,24 +3034,3 @@ footer .ui.language .menu {
|
||||||
.ui.user.list .item .description a:hover {
|
.ui.user.list .item .description a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
.user.link-account:not(.icon) {
|
|
||||||
padding-top: 15px;
|
|
||||||
padding-bottom: 5px;
|
|
||||||
}
|
|
||||||
.signin .oauth2 div {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
.signin .oauth2 div p {
|
|
||||||
margin: 10px 5px 0 0;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.signin .oauth2 a {
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
|
||||||
.signin .oauth2 a:last-child {
|
|
||||||
margin-right: 0px;
|
|
||||||
}
|
|
||||||
.signin .oauth2 img {
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
}
|
|
||||||
|
|
|
@ -46,6 +46,27 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.signin {
|
||||||
|
.oauth2{
|
||||||
|
div {
|
||||||
|
display: inline-block;
|
||||||
|
p {
|
||||||
|
margin: 10px 5px 0 0;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
margin-right: 5px;
|
||||||
|
&:last-child {
|
||||||
|
margin-right: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.user.activate,
|
.user.activate,
|
||||||
.user.forgot.password,
|
.user.forgot.password,
|
||||||
.user.reset.password,
|
.user.reset.password,
|
||||||
|
@ -85,7 +106,7 @@
|
||||||
.header {
|
.header {
|
||||||
padding-left: 0 !important;
|
padding-left: 0 !important;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -114,4 +114,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
&.link-account:not(.icon) {
|
||||||
|
padding-top: 15px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue