diff --git a/assets/images/design_thumb.png b/assets/images/design_thumb.png
index 4b0324b..8030f07 100644
Binary files a/assets/images/design_thumb.png and b/assets/images/design_thumb.png differ
diff --git a/assets/images/li-sign.gif b/assets/images/li-sign.gif
new file mode 100644
index 0000000..8221cf2
Binary files /dev/null and b/assets/images/li-sign.gif differ
diff --git a/assets/javascripts/app.js b/assets/javascripts/app.js
index 77d3040..b2b1c54 100644
--- a/assets/javascripts/app.js
+++ b/assets/javascripts/app.js
@@ -1264,6 +1264,9 @@ $(document).ready(function () {
handleAnimationOnce('.hide3', 'animationvisible3', 0.5);
handleAnimationOnce('.rotate0', 'animationrotate0', 0.5);
handleAnimationOnce('.zoomin', 'animationvisible5', 0.5);
+
+ handleAnimationOnce('.fadeInUp', 'animationvisible', 0.5);
+ handleAnimationOnce('.fadeInDown', 'animationvisible3', 0.5);
});
init();
@@ -1441,6 +1444,21 @@ $(document).ready(function() {
$(this).find('span').text(selectedText + '(已選取)');
});
});
+$(document).ready(function() {
+ $('.toggler').on('click', function() {
+ $(this)
+ .toggleClass('active')
+ .next('.content-wrapper') // 只選相鄰的後一個 .content-wrapper
+ .stop(true, true)
+ .slideToggle(300); // 平滑展開/收起
+ });
+});
+$(document).ready(function() {
+ // 確保兩個元素都存在
+ if ($('.header-nav blockquote').length && $('.orbit-bar-menu').length) {
+ $('.header-nav blockquote').appendTo('.orbit-bar-menu');
+ }
+});
// //選單樣式2
// $(document).ready(function() {
// "use strict";
diff --git a/assets/stylesheets/template/base/_global.scss b/assets/stylesheets/template/base/_global.scss
index 8a79928..f25cbd9 100644
--- a/assets/stylesheets/template/base/_global.scss
+++ b/assets/stylesheets/template/base/_global.scss
@@ -25,11 +25,13 @@ body #orbit-bar .orbit-bar-search-sign-language #search input[type="search"]{
outline: 3px solid $theme-color-second;
background-color: #e6f0ff;
border-radius: 4px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
}
&:focus{
outline: 3px solid $theme-color-second;
background-color: #e6f0ff;
border-radius: 4px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
}
}
#orbit-bar .orbit-bar-inner > ul > li > ul li{
diff --git a/assets/stylesheets/template/base/_go_back_top.scss b/assets/stylesheets/template/base/_go_back_top.scss
index f3cabaa..8b069b2 100644
--- a/assets/stylesheets/template/base/_go_back_top.scss
+++ b/assets/stylesheets/template/base/_go_back_top.scss
@@ -15,6 +15,7 @@
border-radius: 0.125em;
z-index: 1050;
border-radius: 4em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
height: 50px;
width: 50px;
display: flex;
diff --git a/assets/stylesheets/template/layout/content.scss b/assets/stylesheets/template/layout/content.scss
index bac890b..f3bbccd 100644
--- a/assets/stylesheets/template/layout/content.scss
+++ b/assets/stylesheets/template/layout/content.scss
@@ -114,6 +114,7 @@
.ask-question-form{
padding: 2em;
border-radius: 10px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 1px solid #E4E6EA;
padding-bottom: 3em!important;
@media(max-width: 820px){
@@ -247,6 +248,7 @@
font-weight: bold;
line-height: 30px;
border-radius: 6px !important;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
margin-top: 0;
padding: 8.5px 15px 8.5px;
text-transform: uppercase;
@@ -282,4 +284,128 @@
.quick .ic-list a {display: inline-block; color: #000; text-align: center; width: 80%; margin-left: 20%;text-decoration: none;}
.quick .ic-list a:hover {color: #347018;}
.quick .ic-list:before {vertical-align: middle; color: #5182a7; width:20%; margin-right:-20%; padding: 0;}
-.quick .hot a {color: #ff0000; font-weight: bold;}
\ No newline at end of file
+.quick .hot a {color: #ff0000; font-weight: bold;}
+.subCategoryContainer {
+ width: 100% !important;
+}
+#itemFullText{
+ td{
+ &:first-child{
+ @media(min-width:769px){
+ width: 27%;
+ }
+
+ }
+ }
+}
+#subCategory{
+ tr {
+ background: #fafafa;
+ border: 1px solid #ddd;
+ margin-bottom: 1em !important;
+ position: relative;
+ display: flex;
+ }
+ td{
+ display: block;
+ width: fit-content!important;
+ &:first-child{
+ width: 18%;
+ min-width: 130px;
+ }
+ img{
+ outline: 0px;
+ border: 1px solid #ddd;
+ vertical-align: middle;
+ display: block;
+ height: 130px;
+ max-width: 100%;
+ padding: 4px;
+ margin: 0px 8px 0px 0px;
+ width: 130px;
+ }
+ h2{
+ outline: 0px;
+ font-weight: 300;
+ line-height: 1.1;
+ color: inherit;
+ margin-top: 20px;
+ margin-bottom: 10px;
+ font-size: 1em!important;
+ a{
+ color: #347018;
+ }
+ a:before {
+ content: "";
+ display: block;
+ background: url(/assets/li-sign.gif) no-repeat;
+ width: 20px;
+ height: 20px;
+ float: left;
+ margin: 0 6px 0 0;
+ }
+ }
+ }
+
+}
+.subCategory {
+ background: #fafafa;
+ border: 1px solid #ddd;
+ h2{
+ font-size: 1.5em!important ;
+ }
+}
+.subCategory h2 a:before {
+ content: "";
+ display: block;
+ background: url(/assets/li-sign.gif) no-repeat;
+ width: 20px;
+ height: 20px;
+ float: left;
+ margin: 0 6px 0 0;
+}
+
+.itemFullText {
+ font-size: 0.8em;
+
+}
+.ic-wrapper {
+ background-color: #F0F0F0;
+ border-top: 10px solid #ffffff;
+ border-bottom: 3px solid #E0E0E0;
+ padding: 8px;
+ font-size: 20px;
+ line-height: 20px;
+ font-family: Microsoft JhengHei, arial;
+}
+.ic-wrapper-item {
+ padding: 0;
+ min-width:unset!important;
+}
+// @media(max-width:768px){
+// .css-subCategory-page{
+// height: auto!important;
+// }
+// .css-subCategory-pageContainer{
+// width: 100%!important;
+// }
+// }
+
+.toggler{
+ cursor: pointer;
+ margin-bottom: 10px;
+ padding: 7px;
+ border: 1px solid #ddd;
+ background: #F5F5F5;
+ background: -moz-linear-gradient(top, #FAFAFA 0%, #F5F5F5 100%);
+ background: -webkit-linear-gradient(top, #FAFAFA 0%, #F5F5F5 100%);
+ background: -o-linear-gradient(top, #FAFAFA 0%, #F5F5F5 100%);
+ background: linear-gradient(to bottom, #FAFAFA 0%, #F5F5F5 100%);
+ -pie-background: linear-gradient(to bottom, #FAFAFA 0%, #F5F5F5 100%);
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
+ border-radius: 5px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
+ box-shadow: 0 1px 0 #fff inset;
+ text-shadow: 0 1px 0 #fff;
+ font-size: 1.2em!important;
+}
\ No newline at end of file
diff --git a/assets/stylesheets/template/layout/footer.scss b/assets/stylesheets/template/layout/footer.scss
index 6bba31e..3f223b7 100644
--- a/assets/stylesheets/template/layout/footer.scss
+++ b/assets/stylesheets/template/layout/footer.scss
@@ -86,6 +86,7 @@
background:#1a1b20;
top: -59px;
border-radius: 100px 100px 0 0;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
margin: auto;
text-align: center;
display: flex;
diff --git a/assets/stylesheets/template/layout/header.scss b/assets/stylesheets/template/layout/header.scss
index 652a8d9..e79aa1b 100644
--- a/assets/stylesheets/template/layout/header.scss
+++ b/assets/stylesheets/template/layout/header.scss
@@ -12,10 +12,111 @@
z-index: 1;
padding:0;
}
+.navcontainer{
+ @media(max-width:768px){
+ padding: 0;
+ }
+}
+.nav_ul{
+ padding: 0;
+ & > li{
+ position: relative;
+ list-style:none;
+ float: left;
+ display: inline-block;
+ @media(max-width:480px){
+ width: 100%;
+ a{
+ display: block;
+ }
+ }
+ &:hover{
+ background-color:transparent;
+ > a{
+ text-decoration: underline;
+ padding: 0.7em;
+ }
+ & > ul{
+ display: block;
+ a{
+ color: #fff;
+ }
+ }
+ }
+ & > ul{
+ @media(max-width:480px){
+ position: relative;
+ box-shadow: none;
+ display: block;
+ li{
+ width: 100%;
+ }
+ }
+ display: none;
+ width:-webkit-fill-available;
+ min-width: max-content;
+ box-shadow: 2px 2px 5px #00000033;
+ margin: 0;
+ transition-duration: 0.5s;
+ background:$theme-color-second;
+ position: absolute;
+ padding: 0;
+ li{
+ list-style:none;
+ float: none!important;
+ a{
+ color: #fff;
+ display: block;
+ padding: 0.7em;
+ }
+ &:hover{
+ background-color: rgba(darken($theme-color-second, 10%), 1);;
+ & > ul{
+ display: block;
+ }
+ }
+ }
+ }
+ }
+
+
+}
+.orbit-bar-inner{
+ .orbit-bar-menu{
+ display: flex;
+ align-items: center;
+ }
+
+ blockquote{
+ color: #fff;
+ padding: 0;
+ margin: 0;
+ font-size: unset;
+ border-left: 0;
+ &:after, &:before{
+ display: none;
+ }
+ a{
+ color: #fff;
+ text-decoration: none;
+ display: inline-block;
+ height: 40px;
+ padding: 0.7em;
+ font-size: 0.85em;
+ }
+ }
+}
.header-nav {
+ z-index: 2;
ul{
padding: 0;
}
+ a{
+ padding: 0.7em;
+ }
+ li{
+ list-style: none;
+ }
@media(max-width: 769px){
ul{
display: flex!important;
@@ -42,7 +143,7 @@
list-style: none;
}
a[accesskey] {
- position: relative!important;
+
}
.container {
@@ -81,9 +182,10 @@
a {
text-decoration: none;
- padding: 5px;
+ padding:0.7em;
font-size: 0.85em;
- color: #a5a5a5;
+ color: #a5a5a5;
+ display: inline-block;
}
@media (min-width:1025px) {
diff --git a/assets/stylesheets/template/modules/ad_banner.scss b/assets/stylesheets/template/modules/ad_banner.scss
index 0d5efb6..e0933bd 100644
--- a/assets/stylesheets/template/modules/ad_banner.scss
+++ b/assets/stylesheets/template/modules/ad_banner.scss
@@ -89,6 +89,7 @@ iframe{
width: 0.8em !important;
height: 0.8em !important;
border-radius: 50%;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
opacity: .5;
cursor: pointer;
border: 0;
@@ -160,6 +161,7 @@ ul.button-mid{
height: 2.5rem;
font-size: 1.5rem;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
color: #ffffff;
background: rgba(0,0,0,0.2);
text-align: center;
@@ -182,6 +184,7 @@ ul.button-mid{
height: 2.5rem;
font-size: 1.5rem;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
color: $theme-white;
background: rgba(0,0,0,0.2);
text-align: center;
@@ -297,6 +300,8 @@ ul.button-mid{
.banner-overlay{
padding: 3.5em 5em;
background-image: linear-gradient(180deg, transparent 0, #00000066 40%, #000);
+ -pie-background: linear-gradient(180deg, transparent 0, #00000066 40%, #000);
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
}
.w-ba-banner__caption {
@@ -356,6 +361,7 @@ ul.button-mid{
position: relative;
border: 1px solid #dedede;
border-radius: 10px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
padding: 8px !important;
.banner-pager .active-slide a {
background: $theme-color-second !important;
diff --git a/assets/stylesheets/template/modules/announcement.scss b/assets/stylesheets/template/modules/announcement.scss
index 7778af9..47987a1 100644
--- a/assets/stylesheets/template/modules/announcement.scss
+++ b/assets/stylesheets/template/modules/announcement.scss
@@ -298,6 +298,7 @@
margin-bottom: 0;
border: 1px solid #dedede;
border-radius: 10px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
padding-top: 5px !important;
}
.w-annc__title {
@@ -1001,6 +1002,7 @@
.w-annc__img-wrap {
margin-bottom: 0.5em;
border-radius: 20px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
overflow: hidden;
.w-annc__img{
width: 100%;
@@ -1905,6 +1907,7 @@
margin-bottom: 1em;
margin-top: 1em;
border-radius: 30px!important;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
background: rgba(255,255,255,0.6)!important;
box-shadow: 0px 0px 4px 0px #00000033!important;
margin-right: 0.5em;
@@ -1987,6 +1990,7 @@
margin-left: 0.5em;
margin-right: 0.5em;
border-radius: 10px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
transition: all 0.3s;
width: calc( 100%/5 - 1.5em);
&:hover{
@@ -3035,6 +3039,7 @@ table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, tabl
margin-left: 0.5em;
margin-right: 0.5em;
border-radius: 10px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
transition: all 0.3s;
width: calc( 100%/5 - 1.5em);
&:hover{
diff --git a/assets/stylesheets/template/modules/archives.scss b/assets/stylesheets/template/modules/archives.scss
index 8f823f5..cea61f4 100644
--- a/assets/stylesheets/template/modules/archives.scss
+++ b/assets/stylesheets/template/modules/archives.scss
@@ -361,6 +361,7 @@
position: relative;
background: #fff;
border-radius: 5px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
}
.thead.row {
margin: 0;
@@ -395,6 +396,7 @@
position: relative;
background: #fff;
border-radius: 5px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
}
.head{
@media(min-width: 821px){
@@ -431,6 +433,7 @@
margin-bottom: 1.5em;
position: relative;
border-radius: 5px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
@media(max-width: $screen-xs){
padding: 1em;
}
@@ -480,6 +483,7 @@
margin-bottom: 1.5em;
position: relative;
border-radius: 5px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
}
.thead.row {
margin: 0;
diff --git a/assets/stylesheets/template/modules/ask.scss b/assets/stylesheets/template/modules/ask.scss
index 1e12d41..ad49942 100644
--- a/assets/stylesheets/template/modules/ask.scss
+++ b/assets/stylesheets/template/modules/ask.scss
@@ -6,6 +6,7 @@
background-color: #fdfdfd;
padding: 2em;
border-radius: 10px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 1px solid #E4E6EA;
label{
width: 100%;
diff --git a/assets/stylesheets/template/modules/calendar.scss b/assets/stylesheets/template/modules/calendar.scss
index da398f7..1cc9dac 100644
--- a/assets/stylesheets/template/modules/calendar.scss
+++ b/assets/stylesheets/template/modules/calendar.scss
@@ -536,6 +536,7 @@ a.fc-daygrid-more-link.fc-more-link{
display: block;
padding: 0.5em;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
box-shadow: 0 2px 6px #00000026;
border: 0.0625em solid #00000033;
@media(max-width: 768px){
diff --git a/assets/stylesheets/template/modules/event_news.scss b/assets/stylesheets/template/modules/event_news.scss
index 6e02aa0..410e2fe 100644
--- a/assets/stylesheets/template/modules/event_news.scss
+++ b/assets/stylesheets/template/modules/event_news.scss
@@ -1139,6 +1139,8 @@
width: 100%;
height: 8px;
background: linear-gradient(180deg, transparent, #000);
+ -pie-background: linear-gradient(180deg, transparent, #000);
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
z-index: -1;
-webkit-transition: height .6s;
transition: height .6s;
diff --git a/assets/stylesheets/template/modules/faq.scss b/assets/stylesheets/template/modules/faq.scss
index 0fd354a..6533aaf 100644
--- a/assets/stylesheets/template/modules/faq.scss
+++ b/assets/stylesheets/template/modules/faq.scss
@@ -64,6 +64,7 @@
min-width: 30px;
height: 30px;
border-radius: 50%;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
text-align: center;
line-height: 30px;
transition: 0.4s;
diff --git a/assets/stylesheets/template/modules/hashtag.scss b/assets/stylesheets/template/modules/hashtag.scss
new file mode 100644
index 0000000..cfdd4c8
--- /dev/null
+++ b/assets/stylesheets/template/modules/hashtag.scss
@@ -0,0 +1,25 @@
+@charset "utf-8";
+
+@import "../initial";
+
+
+
+p.s-annc__post-orbithashtags{
+ clear: both;
+}
+a.orbit-hash-tag {
+ list-style: none;
+ background: #e0edff;
+ color: #0a84ff;
+ margin-right: 0.5em;
+ border-radius: 0.5em;
+ padding: 0.2em 0.5em;
+ margin-bottom: 0.5em;
+ display: inline-block;
+ &:hover{
+ background: #0a84ff;
+ transform: translatey(-2px);
+ transition: transform 0.4s;
+ color: #fff;
+ }
+}
\ No newline at end of file
diff --git a/assets/stylesheets/template/modules/menu.scss b/assets/stylesheets/template/modules/menu.scss
index e59301e..00c2c73 100644
--- a/assets/stylesheets/template/modules/menu.scss
+++ b/assets/stylesheets/template/modules/menu.scss
@@ -90,7 +90,6 @@
z-index: 10;
position: fixed;
left: 0;
- top:0;
margin-top: 0;
min-width: 100%;
-webkit-transition: all .3s ease;
@@ -659,11 +658,11 @@
}
}
html[lang="en"]{
- .modules-menu .modules-menu-level-0{
- @media (min-width: 1025px){
- width: 50%;
- }
- }
+ // .modules-menu .modules-menu-level-0{
+ // @media (min-width: 1025px){
+ // width: 72%;
+ // }
+ // }
.modules-menu-level-1{
@media(min-width:769px){
min-width: 220px!important;
diff --git a/assets/stylesheets/template/modules/universal-table.scss b/assets/stylesheets/template/modules/universal-table.scss
index d2e481b..6214288 100644
--- a/assets/stylesheets/template/modules/universal-table.scss
+++ b/assets/stylesheets/template/modules/universal-table.scss
@@ -10,6 +10,7 @@
margin: 0.5em;
padding: 0.5em;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
}
}
.universal-table-index{
@@ -18,6 +19,7 @@
margin: 0.5em;
padding: 0.5em;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
}
}
.universal-table-index{
diff --git a/assets/stylesheets/template/modules/video.scss b/assets/stylesheets/template/modules/video.scss
index a53e769..ed6bc8f 100644
--- a/assets/stylesheets/template/modules/video.scss
+++ b/assets/stylesheets/template/modules/video.scss
@@ -25,6 +25,7 @@
padding-bottom: 0px;
padding-top: 0px;
border-radius: 50%;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 0px;
background-color: $theme-color-second;
background: url(/assets/btn-play.svg) no-repeat;
@@ -43,6 +44,7 @@
.view_info{
max-height: 100%;
border-radius: 2px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
font-size: 0.875rem;
font-weight: normal;
letter-spacing: 0.3px;
@@ -84,6 +86,7 @@
max-height: 100%;
border: 0;
border-radius: 2px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
background-color: transparent;
font-size: 0.875rem;
font-family: "Noto Sans TC", PingFangTC, 微軟正黑體, "Microsoft JhengHei", sans-serif;
@@ -101,6 +104,7 @@
&:first-child{
border:1px #fff solid;
border-radius: 2px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
background-color: #1515154d;
}
float: left;
@@ -261,6 +265,7 @@
padding: 0px 15px;
height: 44px;
border-radius: 22px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
line-height: 42px;
border: 1px solid transparent;
background-color: $theme-color-second;
@@ -312,6 +317,8 @@
position: absolute;
bottom: 0;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
+ -pie-background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
top: 0;
z-index: 1;
width: 100%;
@@ -508,6 +515,7 @@
padding-bottom: 0px;
padding-top: 0px;
border-radius: 50%;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 0px;
background-color: $theme-color-second;
background: url(/assets/btn-play.svg) no-repeat;
@@ -526,6 +534,7 @@
.view_info{
max-height: 100%;
border-radius: 2px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
font-size: 0.875rem;
font-weight: normal;
letter-spacing: 0.3px;
@@ -567,6 +576,7 @@
color: #909090;
background: #fff;
border-radius: 50%;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: none;
height: 2.5em;
width: 2.5em;
@@ -683,6 +693,7 @@
padding: 0px 7px;
max-height: 100%;
border-radius: 2px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
margin-bottom: 1em;
&:first-child{
border: 1px solid;
@@ -894,6 +905,7 @@
padding: 0px 15px;
height: 36px;
border-radius: 18px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
line-height: 34px;
border: 1px solid rgb(204, 204, 204);
background-color: rgb(255, 255, 255);
@@ -939,6 +951,7 @@
max-height: 100%;
border: 0;
border-radius: 2px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
background-color: transparent;
font-size: 0.875rem;
font-family: "Noto Sans TC", PingFangTC, 微軟正黑體, "Microsoft JhengHei", sans-serif;
@@ -957,6 +970,7 @@
min-width: 5em;
border: 1px solid;
border-radius: 2px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
background-color: #1515154d;
}
}
diff --git a/assets/stylesheets/template/modules/web_resource.scss b/assets/stylesheets/template/modules/web_resource.scss
index 1c94983..56f5ac2 100644
--- a/assets/stylesheets/template/modules/web_resource.scss
+++ b/assets/stylesheets/template/modules/web_resource.scss
@@ -68,6 +68,7 @@
}
&.widget1 {
+ margin-top: 0.5em;
.widget-title{
margin-bottom: 10px;
background: #268663;
@@ -75,6 +76,7 @@
font-weight: bold;
line-height: 30px;
border-radius: 6px !important;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
margin-top: 0;
padding: 8.5px 15px 8.5px;
text-transform: uppercase;
@@ -103,7 +105,6 @@
}
.widget-content-title {
- padding-top: 0.5em;
@extend .i-subtitle;
}
}
@@ -166,9 +167,11 @@
}
.link-img-wrap{
border-radius:10em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
overflow: hidden;
&:hover{
border-radius:2em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
-webkit-transition: .3s all ease;
-o-transition: .3s all ease;
transition: .3s all ease;
@@ -208,6 +211,7 @@
}
.link-img-wrap{
border-radius: 2em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
overflow: hidden;
&:hover{
img{
diff --git a/assets/stylesheets/template/template.scss b/assets/stylesheets/template/template.scss
index 0fb457f..59c440d 100644
--- a/assets/stylesheets/template/template.scss
+++ b/assets/stylesheets/template/template.scss
@@ -236,6 +236,7 @@ ul.tab_nav {
}
.black-screen-social-window.reactable .content-social .social_wrap > div:hover, .black-screen-social-window.reactable .content-social .social_wrap > div.hover-class{
border-radius: 30px 0 0 30px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
background: #fff;
}
.hide_sharer_button{
@@ -354,6 +355,7 @@ ul.tab_nav {
position: absolute;
padding: 0.1em 1.5em;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 2px solid #f5c346;
color: #333;
left: 36%;
@@ -384,6 +386,7 @@ ul.tab_nav {
position: absolute;
padding: 0.1em 1.5em;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 2px solid #5a89f5;
color: #333;
left: 36%;
@@ -414,6 +417,7 @@ ul.tab_nav {
position: absolute;
padding: 0.1em 1.5em;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 2px solid #464063;
color: #333;
left: 36%;
@@ -444,6 +448,7 @@ ul.tab_nav {
position: absolute;
padding: 0.1em 1.5em;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 2px solid #ed7b77;
color: #333;
left: 36%;
@@ -474,6 +479,7 @@ ul.tab_nav {
position: absolute;
padding: 0.1em 1.5em;
border-radius: 1em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 2px solid #afaac8;
color: #333;
left: 36%;
@@ -571,6 +577,7 @@ table.dataTable>tbody>tr.child{
.modal-content{
box-shadow: 0 24px 38px 3px #00000024, 0 9px 46px 8px #0000001f, 0 11px 15px -7px #00000033;
border-radius: 8px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
border: 0;
}
.fc .fc-daygrid-day.fc-day-today{
@@ -816,6 +823,7 @@ a.ui-state-default{
letter-spacing: 2px;
outline: none;
border-radius: 25px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
transition: all .5s ease-in-out;
background:none;
padding-right: 40px;
@@ -847,6 +855,7 @@ a.ui-state-default{
outline: none;
cursor: pointer;
border-radius: 50%;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
position: absolute;
right: 0px;
color:#ffffff ;
@@ -861,6 +870,7 @@ a.ui-state-default{
.btn-search:focus ~ .input-search{
width: 200px;
border-radius: 0px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
background-color: transparent;
border-bottom:1px solid rgba(255,255,255,.5);
transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
@@ -873,6 +883,7 @@ a.ui-state-default{
.input-search:focus{
width: 200px;
border-radius: 0px;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
background-color: transparent;
border-bottom:1px solid rgba(255,255,255,.5);
transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
diff --git a/assets/stylesheets/template/widget/sitemenu.scss b/assets/stylesheets/template/widget/sitemenu.scss
index 95b3d2b..67ea9a5 100644
--- a/assets/stylesheets/template/widget/sitemenu.scss
+++ b/assets/stylesheets/template/widget/sitemenu.scss
@@ -32,6 +32,7 @@
cursor: pointer;
background-color: #fff;
border-radius: 2em;
+ behavior: url("/assets/ie_support/PIE2/PIE.htc");
color: #686868;
text-align: center;
margin-right: 1em;
diff --git a/home/index.html.erb b/home/index.html.erb
index 332298e..07481c6 100644
--- a/home/index.html.erb
+++ b/home/index.html.erb
@@ -9,9 +9,7 @@
<%= render_orbit_bar %>
<%= render_header %>
-
-
-
+
diff --git a/modules/ad_banner/_ad_banner_widget1.html.erb b/modules/ad_banner/_ad_banner_widget1.html.erb
index e73205d..410f3b7 100644
--- a/modules/ad_banner/_ad_banner_widget1.html.erb
+++ b/modules/ad_banner/_ad_banner_widget1.html.erb
@@ -30,19 +30,9 @@
-
+