php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #66217 css fixes
Submitted: 2013-12-02 10:54 UTC Modified: 2013-12-04 20:16 UTC
From: admin at karldeux dot com Assigned:
Status: Closed Package: Website problem
PHP Version: Irrelevant OS:
Private report: No CVE-ID: None
 [2013-12-02 10:54 UTC] admin at karldeux dot com
Description:
------------
There are some erros in your css sheet. Note that you should try to avoid vendor-prefixed property names.

Test script:
---------------
.refentry .refpurpose {
  background-color:#F0F0F0;
  border-top-color: #737373;
  border-bottom-color:1px solid #D6D6D6; <-- invalid (switch to "border-bottom")
  border-radius:0 0 2px 2px;
  box-shadow:
    inset 2px 0 2px -2px #D6D6D6,
    inset -2px 0 2px -2px #D6D6D6;
}

#usernotes h3.title {
    border-bottom: 0.166666667em solid;
    margin-bottom: -0.166666667.em; <-- invalid (switch to "em" without dot)
    line-height:2.666666667;
}

. <-- invalid (open selector, remove the dot)
/* }}} */

/* {{{ lists */


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-12-04 20:16 UTC] admin at karldeux dot com
-Status: Open +Status: Closed
 [2013-12-04 20:16 UTC] admin at karldeux dot com
Fixed by myself.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat May 18 21:01:33 2024 UTC