Implement nested fieldsets

This commit is contained in:
2015-01-25 18:14:57 +07:00
parent ab364e1908
commit 7c607ad025
2 changed files with 95 additions and 27 deletions
+24
View File
@@ -6,6 +6,30 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Configuration Management</title>
<link rel="stylesheet" href="/bootstrap.min.css">
<style type="text/css">
.container {
margin-top: 1em;
}
fieldset:before {
position: absolute;
top: -1%;
left: -1.5em;
display: block;
content: '\0020';
width: 8px;
height: 95%;
margin: 2% 0;
background-color: #eee;
border-radius: 4px;
}
fieldset:hover:before {
background-color: #66afe9;
}
fieldset {
position: relative;
margin-left: 1.5em;
}
</style>
</head>
<body>