diff --git a/app/templates/orbit_bootstrap/assets/stylesheets/template/modules/announcement.scss b/app/templates/orbit_bootstrap/assets/stylesheets/template/modules/announcement.scss index b7cc901..4139d53 100644 --- a/app/templates/orbit_bootstrap/assets/stylesheets/template/modules/announcement.scss +++ b/app/templates/orbit_bootstrap/assets/stylesheets/template/modules/announcement.scss @@ -136,6 +136,7 @@ margin-top: 0; @media (min-width: $screen-sm) { width: 100%; + height: 1.2em; line-height: 1.2em; overflow: hidden; text-overflow: ellipsis; diff --git a/app/templates/orbit_bootstrap/assets/stylesheets/template/modules/member.scss b/app/templates/orbit_bootstrap/assets/stylesheets/template/modules/member.scss new file mode 100644 index 0000000..acc8436 --- /dev/null +++ b/app/templates/orbit_bootstrap/assets/stylesheets/template/modules/member.scss @@ -0,0 +1,130 @@ +// Member INDEX +.index-member { + .index-title { + @extend .unity-title; + } + &.index1 { + + } +} + +// Member SHOW +.show-member { + .show-title { + @extend .unity-title; + } + // .show-content { + // padding-right: 0; + // padding-left: 0; + // .img { + // display: inline-block; + // width: 100%; + // height: auto; + // opacity: (0.8); + // -webkit-filter: grayscale(100%) brightness(1.2); + // -moz-filter: grayscale(100%) brightness(1.2); + // filter: grayscale(100%) brightness(1.2); + // @include transition(all 0.2s ease); + // } + // .show-content-inner { + // position: relative; + // padding: 2px; + // z-index: 0; + // @include scale(1); + // @include transition(all 0.2s ease); + // &:hover { + // z-index: 1; + // @include scale(1.1); + // .img { + // opacity: (1); + // -webkit-filter: grayscale(0%) brightness(1); + // -moz-filter: grayscale(0%) brightness(1); + // filter: grayscale(0%) brightness(1); + // } + // } + // } + // } + .post-metadata { + border-bottom: 1px solid $theme-gray-light; + @include clearfix(); + li { + margin-right: 1em; + margin-bottom: 0.6em; + float: left; + &.metadata-tags { + position: relative; + margin-right: 0; + padding-left: 1.6em; + clear: both; + float: none; + i { + position: absolute; + top: 7px; + left: 0; + } + } + &.metadata-tags { + .tag { + display: inline-block; + margin-bottom: 4px; + padding: 5px 8px; + font-size: 0.8em; + color: $theme-gray; + border: 1px solid $theme-gray-light; + text-decoration: none; + &:hover { + color: $theme-color-main; + border-color: $theme-color-main; + background-color: $theme-gray-lighter; + } + } + } + i { + color: darken($theme-gray-light, 10%); + } + } + } + .post-section { + @include clearfix(); + margin-bottom: 2em; + .post-pic { + img { + @include size(100%, auto); + } + } + } + .post-related { + padding-top: 1em; + border-top: 1px solid $theme-gray-light; + li { + padding-bottom: 3px; + padding-left: 1.6em; + & + li { + padding-top: 8px; + border-top: 1px dotted $theme-gray-light; + } + i { + margin: 8px 0 0 -1.6em; + float: left; + color: darken($theme-gray-light, 10%); + } + & > div { + display: inline-block; + } + a { + display: inline-block; + margin-bottom: 4px; + padding: 5px 8px; + font-size: 0.8em; + color: $theme-gray; + border: 1px solid $theme-gray-light; + text-decoration: none; + &:hover { + color: $theme-color-main; + border-color: $theme-color-main; + background-color: $theme-gray-lighter; + } + } + } + } +} \ No newline at end of file diff --git a/app/templates/orbit_bootstrap/assets/stylesheets/template/template.scss b/app/templates/orbit_bootstrap/assets/stylesheets/template/template.scss index a132c83..aa2ea3e 100644 --- a/app/templates/orbit_bootstrap/assets/stylesheets/template/template.scss +++ b/app/templates/orbit_bootstrap/assets/stylesheets/template/template.scss @@ -20,6 +20,7 @@ @import "modules/web_resource"; @import "modules/gallery"; @import "modules/archives"; +@import "modules/member"; // Widget @import "widget/breadcrumb"; diff --git a/app/templates/orbit_bootstrap/assets/stylesheets/template/widget/sitemenu.scss b/app/templates/orbit_bootstrap/assets/stylesheets/template/widget/sitemenu.scss index 32923b4..d8355c4 100644 --- a/app/templates/orbit_bootstrap/assets/stylesheets/template/widget/sitemenu.scss +++ b/app/templates/orbit_bootstrap/assets/stylesheets/template/widget/sitemenu.scss @@ -3,5 +3,19 @@ @extend .unity-title; } &.widget1 { + ul { + margin-left: 1em; + a { + display: block; + padding: 5px 8px; + border-bottom: 1px dotted $theme-gray-light; + &:hover { + text-decoration: none; + } + } + &.sitemenu-menu-level-0 { + margin-left: 0em; + } + } } } \ No newline at end of file diff --git a/app/templates/orbit_bootstrap/home/index.html.erb b/app/templates/orbit_bootstrap/home/index.html.erb index 9c1c38b..683fed1 100644 --- a/app/templates/orbit_bootstrap/home/index.html.erb +++ b/app/templates/orbit_bootstrap/home/index.html.erb @@ -17,6 +17,7 @@ + <%= image_tag("http://placehold.it/350x150") %> <%= render_footer %> \ No newline at end of file diff --git a/app/templates/orbit_bootstrap/modules/archive/index1.html.erb b/app/templates/orbit_bootstrap/modules/archive/index1.html.erb index 3e0c23b..67e4979 100644 --- a/app/templates/orbit_bootstrap/modules/archive/index1.html.erb +++ b/app/templates/orbit_bootstrap/modules/archive/index1.html.erb @@ -1,34 +1,40 @@ -
-

+
+

{{widget-title}}

-
+
-
    -
  1. - {{archive-title}} -
  2. -
+
+
+ {{archive-title}} + + {{status}} + +
+
+
+ {{file-name}} + {{file-type}} +
+
+
-

- More -

\ No newline at end of file diff --git a/app/templates/orbit_bootstrap/modules/archive/show.html.erb b/app/templates/orbit_bootstrap/modules/archive/show.html.erb new file mode 100644 index 0000000..11a8c05 --- /dev/null +++ b/app/templates/orbit_bootstrap/modules/archive/show.html.erb @@ -0,0 +1,21 @@ +
+

+ {{title}} +

+
+
+
+ {{archive-title}} + + {{status}} + +
+
+
+ {{file-name}} + {{file-type}} +
+
+
+
+
\ No newline at end of file diff --git a/app/templates/orbit_bootstrap/modules/book/show.html.erb b/app/templates/orbit_bootstrap/modules/book/show.html.erb index 716b4e6..3722a7e 100644 --- a/app/templates/orbit_bootstrap/modules/book/show.html.erb +++ b/app/templates/orbit_bootstrap/modules/book/show.html.erb @@ -1,21 +1,21 @@

{{title}} -

-

 {{year}}

-

 {{authors}}

-

 {{isbn}}

-

 {{language}}

-

 {{pages}}

-

 {{publish_date}}

-

 {{publication_date}}

-

 {{url}}

-

 {{note}}

-

 {{keywords}}

-

 {{publisher}}

-

 {{editor}}

+

+

{{year}}

+

{{authors}}

+

{{isbn}}

+

{{language}}

+

{{pages}}

+

{{publish_date}}

+

{{publication_date}}

+

{{url}}

+

{{note}}

+

{{keywords}}

+

{{publisher}}

+

{{editor}}

-
+{{pagination_goes_here}} \ No newline at end of file diff --git a/app/templates/orbit_bootstrap/widgets/breadcrumb_widget/_widget.html.erb b/app/templates/orbit_bootstrap/widgets/breadcrumb_widget/_widget.html.erb deleted file mode 100644 index dfe4ca5..0000000 --- a/app/templates/orbit_bootstrap/widgets/breadcrumb_widget/_widget.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -
- -
\ No newline at end of file diff --git a/app/templates/orbit_bootstrap/widgets/site_menu_widget/_widget1.html.erb b/app/templates/orbit_bootstrap/widgets/site_menu_widget/_widget1.html.erb index 8465ddb..1d24c65 100644 --- a/app/templates/orbit_bootstrap/widgets/site_menu_widget/_widget1.html.erb +++ b/app/templates/orbit_bootstrap/widgets/site_menu_widget/_widget1.html.erb @@ -2,13 +2,13 @@

{{widget-title}}

-