-
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.
- Loading branch information
João Domingues
committed
Mar 6, 2018
1 parent
7c84168
commit 5592f41
Showing
64 changed files
with
760 additions
and
26,494 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
73 changes: 73 additions & 0 deletions
73
src/app/queryBlocks/compoundQuery/compoundQuery.component.css
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,73 @@ | ||
|
||
.compound-query | ||
{ | ||
border-radius: 2px; | ||
margin : 5px 0; | ||
background: rgba(128,128,128,0.1); | ||
} | ||
.compound-query:hover | ||
{ | ||
background: rgba(128,128,128,0.2); | ||
} | ||
|
||
.compound-query-title | ||
{ | ||
border-top-left-radius: 2px; | ||
border-top-right-radius: 2px; | ||
padding : 6px; | ||
background : #3f51b5; | ||
color : white;font-weight:bold; | ||
font-size: 14px; | ||
} | ||
|
||
.compound-query-title > div | ||
{ | ||
padding : 5px; | ||
} | ||
|
||
.compound-query-title mat-icon | ||
{ | ||
float : right; | ||
cursor : pointer; | ||
} | ||
|
||
.compound-query-title mat-icon:hover | ||
{ | ||
background: rgba(255,255,255,0.2); | ||
border-radius: 12px; | ||
} | ||
|
||
.compound-query-header, | ||
.compound-query-footer | ||
{ | ||
background : rgba(128,128,128,0.1); | ||
padding : 4px 8px; | ||
} | ||
|
||
.compound-query-body | ||
{ | ||
padding : 4px 8px; | ||
padding-left : 22px; | ||
} | ||
|
||
.compound-query-add-sub-query, | ||
.compound-query-add-condition | ||
{ | ||
margin : 4px 0; | ||
} | ||
|
||
div.warn | ||
{ | ||
background: #ff4081; | ||
padding: 4px 6px; | ||
} | ||
div.warn * | ||
{ | ||
font-size: 15px; | ||
color: white; | ||
} | ||
div.warn i | ||
{ | ||
position: relative; | ||
top: 2px; | ||
} |
Oops, something went wrong.