forked from microsoft/nni
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the issue#211: WebUI does not support search for a specific Trial (
microsoft#355) * Fix the issue#211: WebUI does not support search for a specific Trial * delete unuseful code * Update * default 20
- Loading branch information
1 parent
9380e68
commit 5b24f04
Showing
10 changed files
with
98 additions
and
162 deletions.
There are no files selected for viewing
This file was deleted.
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
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 |
---|---|---|
@@ -1,20 +1,26 @@ | ||
Button.changeBtu, Button.changeBtu:hover, Button.changeBtu:focus{ | ||
background-color: #3c8dbc; | ||
border-color: #3c8dbc; | ||
line-height: 30px; | ||
} | ||
$btnBgcolor: #3c8dbc; | ||
|
||
Button.tableButton{ | ||
background: #3c8dbc; | ||
border-color: #3c8dbc; | ||
background: $btnBgcolor; | ||
border-color: $btnBgcolor; | ||
height: 26px; | ||
line-height: 26px; | ||
font-size: 14px; | ||
margin-top: 2px; | ||
border-radius: 0; | ||
} | ||
|
||
/* kill btn style: delete its own hover style */ | ||
/* after button click the color not change */ | ||
Button.tableButton:hover, Button.tableButton:focus{ | ||
background-color: #3c8dbc; | ||
border-color: #3c8dbc; | ||
} | ||
background-color: $btnBgcolor; | ||
border-color: $btnBgcolor; | ||
} | ||
|
||
Button.changeBtu{ | ||
height: 32px; | ||
} | ||
|
||
.ant-input, .ant-select-selection{ | ||
border-radius: 0 !important; | ||
} | ||
|
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,19 @@ | ||
.allList{ | ||
background-color: #b3b3b3; | ||
padding-right: 14px; | ||
.btns{ | ||
height: 32px; | ||
text-align: right; | ||
.ant-input-search{ | ||
height: 32px; | ||
} | ||
} | ||
Button.resetBtn{ | ||
height: 32px; | ||
font-size: 15px; | ||
position: relative; | ||
top: 1px; | ||
} | ||
} | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.