Skip to content

Commit

Permalink
書籍検索のボタンの体裁を変更
Browse files Browse the repository at this point in the history
現在の bootstrap の btn-primary と同じ体裁に変更
  • Loading branch information
otokomae committed Mar 30, 2016
1 parent b3ff881 commit f923efd
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions webroot/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,25 +95,31 @@ div.wysiwyg-books {
}

.wysiwyg-books .btn {
padding: 4px 8px;
line-height: 20px;
cursor: pointer;
color: #fff;
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
overflow: visible;
-webkit-appearance: none;
box-sizing: border-box;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}

.wysiwyg-books .link-btn {
background-image: -webkit-linear-gradient(top,#337ab7 0,#265a88 100%);
background-image: -o-linear-gradient(top,#337ab7 0,#265a88 100%);
background-image: -webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));
background-image: linear-gradient(to bottom,#337ab7 0,#265a88 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
background-repeat: repeat-x;
border-color: #245580;
color: #fff;
background-color: #337ab7;
border-color: #2e6da4;
}

/**
Expand Down

0 comments on commit f923efd

Please sign in to comment.