Commit 8fe48e6f796d24e4f8009efe62a0b4d0b8f74e23

Authored by Виталий
1 parent 69e6fb96

git

Showing 2 changed files with 35 additions and 11 deletions   Show diff stats
frontend/web/css/style.css
... ... @@ -4586,8 +4586,8 @@ ul.download-list-files li:hover .download-link {transition: 0.2s; opacity: 1; -m
4586 4586 float: left;
4587 4587 }
4588 4588 .tender-form-buttons-wr a {
4589   - height: 45px;
4590   - line-height: 45px;
  4589 + height: 29px;
  4590 + line-height: 29px;
4591 4591 float: left;
4592 4592 font-size: 13px;
4593 4593 color: #bfbfbf;
... ... @@ -4646,8 +4646,9 @@ ul.download-list-files li:hover .download-link {transition: 0.2s; opacity: 1; -m
4646 4646 left: -17px;
4647 4647 }
4648 4648 .max-size {
4649   - float: right; color: #c2c2c2; font-size: 11px; margin-top: 20px;
  4649 + float: right; color: #c2c2c2; font-size: 11px;
4650 4650 }
  4651 +.tender-file-wr .form-group {height: 21px}
4651 4652 .settings-map-ul { width: 100%;float: left; height: 27px; text-align: center;margin-top: 13px;}
4652 4653 .settings-map-ul ul{height: 100%; display: inline-block}
4653 4654 .settings-map-ul ul li{float: left; list-style: none; height: 100%;margin-left: 4px}
... ... @@ -7045,8 +7046,26 @@ li.active-menu-admin:hover a .ico_num {
7045 7046 ._fix_errors_tender .get-project-new {
7046 7047 height: 29px !important;
7047 7048 line-height: 29px !important;
7048   - background: #087dc8 !important;
7049   - border-bottom: 1px solid #0054a6;
  7049 + background: #148ad6;
  7050 + background: -moz-linear-gradient(top, #148ad6 0%, #207cca 95%, #207cca 95%, #207cca 95%, #0054a6 95%);
  7051 + background: -webkit-linear-gradient(top, #148ad6 0%,#207cca 95%,#207cca 95%,#207cca 95%,#0054a6 95%);
  7052 + background: linear-gradient(to bottom, #148ad6 0%,#207cca 95%,#207cca 95%,#207cca 95%,#0054a6 95%);
  7053 + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#148ad6', endColorstr='#0054a6',GradientType=0 );
  7054 + border-bottom: 0;
  7055 +}
  7056 +._fix_errors_tender .get-project-new:hover {
  7057 + background: #0054a6;
  7058 + background: -moz-linear-gradient(top, #0054a6 5%, #207cca 5%, #207cca 5%, #207cca 5%, #148ad6 100%);
  7059 + background: -webkit-linear-gradient(top, #0054a6 5%,#207cca 5%,#207cca 5%,#207cca 5%,#148ad6 100%);
  7060 + background: linear-gradient(to bottom, #0054a6 5%,#207cca 5%,#207cca 5%,#207cca 5%,#148ad6 100%);
  7061 + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0054a6', endColorstr='#148ad6',GradientType=0 );
  7062 +}
  7063 +._fix_errors_tender .get-project-new:focus {
  7064 + box-shadow: none;
  7065 + border-bottom: 0;
  7066 +}
  7067 +._fix_errors_tender .get-project-new:active {
  7068 + background: #0054a6;
7050 7069 }
7051 7070 ._fix_errors_tender .get-list-new {
7052 7071 height: 29px !important;
... ... @@ -7055,6 +7074,17 @@ li.active-menu-admin:hover a .ico_num {
7055 7074 border: 1px solid #0072bc !important;
7056 7075 color: #0072bc !important;
7057 7076 }
  7077 +._fix_errors_tender .get-list-new:hover {
  7078 + background: #148ad6 !important;
  7079 + border: 1px solid #148ad6 !important;
  7080 + color: #fff !important;
  7081 +}
  7082 +._fix_errors_tender .get-list-new:focus {box-shadow: none}
  7083 +._fix_errors_tender .get-list-new:active {
  7084 + background: #0054a6 !important;
  7085 + border: 1px solid #0054a6 !important;
  7086 + color: #fff !important;
  7087 +}
7058 7088 /*Rating glyphicon*/
7059 7089 @font-face {
7060 7090 font-family: 'Glyphicons Halflings';
... ...
frontend/web/js/script.js
... ... @@ -731,12 +731,6 @@ $(document).ready(
731 731 fileValMulti();
732 732 function fileValMulti()
733 733 {
734   - $('.tender-file-wr input[type="file"]').change(
735   - function()
736   - {
737   - $('.max-size').css({marginTop : 20})
738   - }
739   - )
740 734 if($('.tender-file-wr input[type="file"]').val == 0)
741 735 {
742 736 alert('fdg')
... ...