Skip to content

Commit 191c631

Browse files
authored
Merge pull request #172 from BuildFire/feat/search-engine-integration
Feat/search engine integration
2 parents 46afd76 + ca2f8bb commit 191c631

File tree

17 files changed

+660
-190
lines changed

17 files changed

+660
-190
lines changed

control/content/assets/css/bf_base.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -862,4 +862,13 @@ color: var(--c-info);
862862
min-width: 5rem;
863863
}
864864

865+
#loader {
866+
border: 6px solid #f3f3f3;
867+
border-radius: 50%;
868+
border-top: 4px solid var(--c-primary);
869+
width: 30px;
870+
height: 30px;
871+
-webkit-animation: spin 1s linear infinite;
872+
animation: spin 1s linear infinite;
873+
}
865874
/* Social Item */
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
.subPage.activeDialog {
2+
background: #ffffffaa;
3+
bottom: 0;
4+
display: block;
5+
height: 100vh;
6+
position: fixed;
7+
right: 0;
8+
top: 0;
9+
width: 100vw;
10+
z-index: 999;
11+
}
12+
13+
.subPage>.subPageContent {
14+
display: none;
15+
position: fixed;
16+
top: 0px;
17+
left: 0px;
18+
background-color: white;
19+
}
20+
21+
.subPage.activeFull>.subPageContent {
22+
display: block;
23+
height: 100%;
24+
width: 100%;
25+
}
26+
27+
.subPage.activeDialog>.subPageContent {
28+
display: block;
29+
width: 70%;
30+
top: 50%;
31+
left: 50%;
32+
transform: translate(-50%, -50%);
33+
overflow: auto;
34+
max-height: 90vh;
35+
box-shadow: grey 5px 5px 15px;
36+
z-index: 1000;
37+
}
38+
39+
.subPage.activeDialog.loaderDialog>.subPageContent {
40+
width: 50%;
41+
}
42+
43+
.subPage>.subPageContent>.spHeader {
44+
display: flex;
45+
align-items: center;
46+
justify-content: space-between;
47+
background: #eef0f0;
48+
position: relative;
49+
font-size: 15px;
50+
}
51+
52+
.spHeader h4 {
53+
font-size: 18px;
54+
font-weight: bold;
55+
margin: 0;
56+
}
57+
58+
.spHeader span.close-modal {
59+
color: #5f5f5f;
60+
font-size: 20px;
61+
}
62+
63+
.subPage>.subPageContent>.spFooter {
64+
text-align: right;
65+
border-top: 1px solid #ddd !important;
66+
}
67+
68+
.spFooter button {
69+
margin-left: 8px;
70+
}
71+
72+
.required:after {
73+
content: " *";
74+
color: red;
75+
}
76+
77+
#rssErrorMessage, #googleErrorMessage {
78+
color: red;
79+
}

control/content/assets/css/style.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
.main_view {
2+
padding-right: 8px;
3+
}
4+
15
/* tooltip */
26
.tooltip-container {
37
display: flex;
@@ -125,7 +129,7 @@
125129
#carousel .item.clearfix .col-md-9 .btn::after {
126130
background-color: var(--c-primary) !important;
127131
left: unset;
128-
right: 70%;
132+
right: 72%;
129133
}
130134

131135
.url-types p .icon-check{

0 commit comments

Comments
 (0)