GUI2 Settings and Partitions View

Change-Id: I605304c20c1e625394d789104fcd7a5b278e244d
diff --git a/web/gui2/src/main/webapp/app/view/settings/settingsdetails/settingsdetails.component.html b/web/gui2/src/main/webapp/app/view/settings/settingsdetails/settingsdetails.component.html
new file mode 100644
index 0000000..eef4ba2
--- /dev/null
+++ b/web/gui2/src/main/webapp/app/view/settings/settingsdetails/settingsdetails.component.html
@@ -0,0 +1,56 @@
+<!--
+~ Copyright 2018-present Open Networking Foundation
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~     http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<div id="settings-details-panel" class="floatpanel" [@settingsDetailsState]="id!=='' && !closed">
+    <div class="container">
+        <div class="top">
+            <onos-icon class="close-btn" classes="active-close" iconId="close" iconSize="20" (click)="close()"></onos-icon>
+        </div>
+        <div class="top-content">
+            <div class="settings-title-1">{{ settingsDetails?.component }}</div>
+            <div class="settings-title-2">{{ settingsDetails?.prop }}</div>
+            <div class="settings-props">
+                <table>
+                    <tbody>
+                        <tr>
+                            <td class="label">Component: </td>
+                            <td class="value">{{ settingsDetails?.fqComponent }}</td>
+                        </tr>
+                        <tr>
+                            <td class="label">Property: </td>
+                            <td class="value">{{ settingsDetails?.prop }}</td>
+                        </tr>
+                        <tr>
+                            <td class="label">Type: </td>
+                            <td class="value">{{ settingsDetails?.type }}</td>
+                        </tr>
+                        <tr>
+                            <td class="label">Value: </td>
+                            <td class="value">{{ settingsDetails?.value }}</td>
+                        </tr>
+                        <tr>
+                            <td class="label">Default: </td>
+                            <td class="value">{{ settingsDetails?.defValue }}</td>
+                        </tr>
+                        <tr>
+                            <td class="label">Description: </td>
+                            <td class="value">{{ settingsDetails?.desc }}</td>
+                        </tr>
+                    </tbody>
+                </table>
+            </div>
+        </div>
+    </div>
+</div>
\ No newline at end of file