@@ -31,32 +32,47 @@ export default function Header() {
- ToggleonMouse(e, 'add')}
- onMouseLeave={(e) => ToggleonMouse(e, 'remove')}
+ onMouseEnter={(e) => ToggleonMouse(e, 'add', 'nav > ul')}
+ onMouseLeave={(e) => ToggleonMouse(e, 'remove', 'nav > ul')}
>
ホームへ
- ToggleonMouse(e, 'add')}
- onMouseLeave={(e) => ToggleonMouse(e, 'remove')}
+ onMouseEnter={(e) => ToggleonMouse(e, 'add', 'nav > ul')}
+ onMouseLeave={(e) => ToggleonMouse(e, 'remove', 'nav > ul')}
>
- - 新規物件登録
- - モノ/図面管理
+ - ToggleonMouse(e, 'add', 'li > ul')}
+ onMouseLeave={(e) => ToggleonMouse(e, 'remove', 'li > ul')}
+ >新規物件登録
+ - ToggleonMouse(e, 'add', 'li > ul')}
+ onMouseLeave={(e) => ToggleonMouse(e, 'remove', 'li > ul')}
+ >モノ/図面管理
- ToggleonMouse(e, 'add')}
- onMouseLeave={(e) => ToggleonMouse(e, 'remove')}
+ onMouseEnter={(e) => ToggleonMouse(e, 'add', 'nav > ul')}
+ onMouseLeave={(e) => ToggleonMouse(e, 'remove', 'nav > ul')}
>
- - お知らせ
- - FAQ
- - 素材のダウンロード
+ - ToggleonMouse(e, 'add', 'li > ul')}
+ onMouseLeave={(e) => ToggleonMouse(e, 'remove', 'li > ul')}
+ >お知らせ
+ - ToggleonMouse(e, 'add', 'li > ul')}
+ onMouseLeave={(e) => ToggleonMouse(e, 'remove', 'li > ul')}
+ >FAQ
+ - ToggleonMouse(e, 'add', 'li > ul')}
+ onMouseLeave={(e) => ToggleonMouse(e, 'remove', 'li > ul')}
+ >素材のダウンロード
diff --git a/src/components/publishpage/PublishPage.jsx b/src/components/publishpage/PublishPage.jsx
index 4a075ad..c0a675c 100644
--- a/src/components/publishpage/PublishPage.jsx
+++ b/src/components/publishpage/PublishPage.jsx
@@ -81,7 +81,7 @@ export default function PublishPage() {
|
CanvasPage |
|
-
2024-09-05 |
+
2024-09-06 |
diff --git a/src/styles/_contents.scss b/src/styles/_contents.scss
index 95cf827..5d6b0ba 100644
--- a/src/styles/_contents.scss
+++ b/src/styles/_contents.scss
@@ -199,6 +199,7 @@
align-items: center;
margin-right: 34px;
height: 100%;
+ transition: all .17s ease-in-out;
button{
position: relative;
font-size: 12px;
@@ -220,6 +221,9 @@
&:last-child{
margin-right: 0;
}
+ &.mouse{
+ opacity: 0.55;
+ }
}
}
}
diff --git a/src/styles/_inputcommon.scss b/src/styles/_inputcommon.scss
index 55cceb4..f382dfe 100644
--- a/src/styles/_inputcommon.scss
+++ b/src/styles/_inputcommon.scss
@@ -11,6 +11,12 @@
margin-right: 10px;
}
}
+ .form-select{
+ width: 168px;
+ > div{
+ width: 100%;
+ }
+ }
.form-datepicker{
div{
margin-bottom: 10px;
diff --git a/src/styles/_layout.scss b/src/styles/_layout.scss
index 2e0ff4d..e33d75e 100644
--- a/src/styles/_layout.scss
+++ b/src/styles/_layout.scss
@@ -96,6 +96,7 @@ header{
transition: all .17s ease-in-out;
.nav-depth2-item{
margin-bottom: 10px;
+ transition: all .17s ease-in-out;
a{
font-size: 13px;
font-weight: normal;
@@ -104,6 +105,9 @@ header{
&:last-child{
margin-bottom: 0;
}
+ &.mouse{
+ opacity: 0.55;
+ }
}
&::before{
content: '';
diff --git a/src/styles/_reset.scss b/src/styles/_reset.scss
index de83d19..286fa38 100644
--- a/src/styles/_reset.scss
+++ b/src/styles/_reset.scss
@@ -171,30 +171,43 @@ button{
height: 30px;
line-height: 30px;
padding: 0 10px;
- font-size: 13px;
background-color: #373737;
border: 1px solid #3F3F3F;
border-radius: 2px;
border-top-left-radius: 2px;
color: #fff;
cursor: pointer;
+ p{
+ font-size: 13px;
+ color: #fff;
+ height: 100%;
+ }
.select-item-wrap{
position: absolute;
top: 100%;
left: -1px;
clip-path:inset(0 0 100% 0);
width: calc(100% + 2px);
- padding: 12px 20px;
+ padding: 8px 0;
background-color: #373737;
border: 1px solid #3F3F3F;
border-radius: 2px;
transition: all 0.17s ease-in-out;
visibility: hidden;
.select-item{
- font-size: 12px;
- color: #fff;
+ display: flex;
+ align-items: center;
+ padding: 8px 20px;
line-height: 1.4;
- padding: 8px 0;
+ transition: all .17s ease-in-out;
+ button{
+ font-size: 12px;
+ color: #fff;
+ line-height: 1.4;
+ }
+ &:hover{
+ background-color: #2C2C2C;
+ }
}
}
&::after{
diff --git a/src/styles/publishpage.scss b/src/styles/publishpage.scss
index 32d5998..0b69f65 100644
--- a/src/styles/publishpage.scss
+++ b/src/styles/publishpage.scss
@@ -12,7 +12,7 @@ table { margin-bottom: 150px; border-collapse: collapse; border-spacing: 0; }
.contents h3{font-size: 16px; margin: 10px 0;}
.red { color: #ff0000;}
.blues { color: #001aff;}
-.guide_table tbody td a{color: #001aff; text-decoration: underline;}
+.guide_table tbody td a{color: #001aff; text-decoration: underline; font-size: 12px;}
.design_summary_web,
.design_summary_tab,
.design_summary_mob { display: inline-block; color: rosybrown; font-weight: bold; font-size: 12px; margin-right: 30px; }
@@ -33,7 +33,7 @@ table { margin-bottom: 150px; border-collapse: collapse; border-spacing: 0; }
.tab_li > li { float: left; width: 90px; height: 30px; line-height: 30px; text-align: center; background: #424242; color: #fff; margin-right: 5px; margin-bottom: 5px; }
.tab_li > li > a { color: #fff; text-decoration: none; display: block; }
.tab_li > li.on { font-weight: bold; text-decoration: underline; font-size: 16px; }
-td strong {font-size:14px;font-weight:600; color: rgb(0, 0, 0); }
+td strong {font-size:12px;font-weight:600; color: rgb(0, 0, 0); }
td strong.title { color: #000; }
.auto-style1 { height: 20px; }
.auto-style2 { background: #ddffca; height: 20px; }