-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CE-71] Add login support for basic theme
Change-Id: Id48e7c8e90afa402217e59482f624e7a251a198b Signed-off-by: Haitao Yue <[email protected]>
- Loading branch information
Showing
8 changed files
with
200 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
.form { | ||
position: absolute; | ||
top: 50%; | ||
left: 70%; | ||
margin: -160px 0 0 -160px; | ||
width: 350px; | ||
height: 350px; | ||
padding: 36px; | ||
box-shadow: 0 0 100px rgba(0, 0, 0, 0.08); | ||
background-color: rgba(255, 255, 255, 0.7); | ||
} | ||
.form button { | ||
width: 100%; | ||
} | ||
.form p { | ||
color: #cccccc; | ||
text-align: center; | ||
margin-top: 16px; | ||
} | ||
.form p span:first-child { | ||
margin-right: 16px; | ||
} | ||
.logo { | ||
text-align: center; | ||
height: 40px; | ||
line-height: 40px; | ||
cursor: pointer; | ||
margin-bottom: 24px; | ||
} | ||
.logo img { | ||
width: 60px; | ||
margin-right: 8px; | ||
} | ||
.logo span { | ||
vertical-align: text-bottom; | ||
font-size: 16px; | ||
text-transform: uppercase; | ||
display: inline-block; | ||
color: #595f69; | ||
} | ||
.ant-spin-container, | ||
.ant-spin-nested-loading { | ||
height: 100%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
.form { | ||
position: absolute; | ||
top: 50%; | ||
left: 70%; | ||
margin: -160px 0 0 -160px; | ||
width: 350px; | ||
height: 350px; | ||
padding: 36px; | ||
box-shadow: 0 0 100px rgba(0,0,0,.08); | ||
background-color: rgba(255,255,255,0.7); | ||
|
||
button { | ||
width: 100%; | ||
} | ||
|
||
p { | ||
color: rgb(204, 204, 204); | ||
text-align: center; | ||
margin-top: 16px; | ||
|
||
span { | ||
&:first-child { | ||
margin-right: 16px; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.logo { | ||
text-align: center; | ||
height: 40px; | ||
line-height: 40px; | ||
cursor: pointer; | ||
margin-bottom: 24px; | ||
|
||
img { | ||
width: 60px; | ||
margin-right: 8px; | ||
} | ||
|
||
span { | ||
vertical-align: text-bottom; | ||
font-size: 16px; | ||
text-transform: uppercase; | ||
display: inline-block; | ||
color: #595f69; | ||
} | ||
} | ||
|
||
.ant-spin-container, | ||
.ant-spin-nested-loading { | ||
height: 100%; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters