소스 검색

HUE-6077 [frontend] Fix styling of search container in assist and top bar

Johan Ahlen 8 년 전
부모
커밋
9b25bed
2개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 0
      desktop/core/src/desktop/static/desktop/css/hue.css
  2. 5 3
      desktop/core/src/desktop/static/desktop/less/hue.less

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
desktop/core/src/desktop/static/desktop/css/hue.css


+ 5 - 3
desktop/core/src/desktop/static/desktop/less/hue.less

@@ -223,21 +223,23 @@ body {
 
 .search-container {
   .display-flex;
-  .flex(1 1 29px);
+  .flex(1 1 37px);
   position: relative;
+  margin: 8px 10px 0 10px;
 }
 
 .search-container > input {
   .flex(1 1 100%);
-  border-bottom-left-radius: 4px;
-  border-top-left-radius: 4px;
+  border-radius: 4px 0 0 4px;
   border: 1px solid @cui-gray-300;
   border-right: none;
   box-shadow: none;
+  margin-bottom: 0;
 }
 
 .search-container > a {
   .flex(0 0 31px);
+  margin-bottom: 0;
   cursor: pointer;
   border-bottom-right-radius: 4px;
   border-top-right-radius: 4px;

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.