Github user sjcorbett commented on a diff in the pull request:
https://github.com/apache/incubator-brooklyn/pull/878#discussion_r38851628
--- Diff: usage/jsgui/src/main/webapp/assets/css/base.css ---
@@ -362,24 +360,31 @@ input[type="color"]:focus,.uneditable-input:focus {
}
.addApplication {
- border: 1px solid #a1cb8c !important;
- color: #505050 !important;
- background: url(../images/addApplication-plus.png) no-repeat
!important;
- padding: 10px 0px 0px 74px !important;
- width: 298px !important;
- height: 201px !important;
+ padding-top: 5px;
+ font-size: 145%;
margin-right: 0;
+ color: white;
+ background-color: #90C858;
+ *background-color: #609040;
+ background-image: -ms-linear-gradient(top, #90C858, #609040);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#90C858),
to(#609040));
+ background-image: -webkit-linear-gradient(top, #90C858, #609040);
+ background-image: -o-linear-gradient(top, #90C858, #609040);
+ background-image: -moz-linear-gradient(top, #90C858, #609040);
+ background-image: linear-gradient(top, #90C858, #609040);
+ background-repeat: repeat-x;
+ border-color: #609040 #609040 #609040;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter:
progid:dximagetransform.microsoft.gradient(startColorstr='#90C858',
endColorstr='#609040', GradientType=0);
+ filter: progid:dximagetransform.microsoft.gradient(enabled=false);
--- End diff --
I'm not too familiar with this function but a bit of research suggests it's
deprecated from IE9 onwards:
https://msdn.microsoft.com/en-us/library/ms532997(v=vs.85).aspx. Is it
something we want to include?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---